diff --git a/backend/upcean.c b/backend/upcean.c index da12c8f2..516aa954 100644 --- a/backend/upcean.c +++ b/backend/upcean.c @@ -378,6 +378,7 @@ char isbn13_check(unsigned char source[]) /* For ISBN(13) only */ check = sum % 10; check = 10 - check; + if(check == 10) check = 0; return itoc(check); }