From 9d8ab8b98b2f4484044ff28708b694ef3023c2f9 Mon Sep 17 00:00:00 2001 From: matze Date: Thu, 25 Oct 2007 00:40:42 +0000 Subject: [PATCH] bugfix for previous commit git-svn-id: https://shell.noname-ev.de/svn/kasse/c128@58 af93e077-1a23-4f1e-9cbe-9382a9d578f5 --- src/general.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/general.c b/src/general.c index 74d57b1..eca154a 100644 --- a/src/general.c +++ b/src/general.c @@ -12,7 +12,7 @@ #include "general.h" /* - * Liest (maximal 31) Zeichen ein, bis Enter gedr�ckt wird. + * Liest (maximal 31) Zeichen ein, bis Enter gedrückt wird. * Vorsicht: Es wird ein statischer Buffer benutzt, sodass man * das Ergebnis via strdup() retten muss, bevor man get_input() * erneut aufruft @@ -42,7 +42,7 @@ char *format_euro(char *s, int maxlen, int cent){ if (len >= maxlen) return NULL; // workaround to produce a leading zero for cents.. %0.2d won't work - sprintf(s, "%d,%s%dEUR", cent / 100, (cent<10?"0":""), cent % 100); + sprintf(s, "%d,%s%dEUR", cent / 100, ((cent%100)<10?"0":""), cent % 100); return s; } -- 2.39.5