]> git.sur5r.net Git - c128-kasse/commitdiff
Bugfix: Use correct data type as return value in buy()
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 1 Nov 2009 11:31:11 +0000 (12:31 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 1 Nov 2009 11:31:11 +0000 (12:31 +0100)
src/kasse.c

index bfec30294ca0fb4e36c27afe77e5e82c98a7c295..9ceb707ce791812d067465ef1f44b541e1aff3bd 100644 (file)
@@ -158,7 +158,7 @@ RETRY:
 }
 
 /* dialog which is called for each bought item */
-BYTE buy(char *name, unsigned int price) {
+static signed int buy(char *name, unsigned int price) {
        int negative = 1;
        char entered[5] = {'1', 0, 0, 0, 0};
        BYTE i = 0, matches = 0;