From: Shamus Hammons Date: Thu, 24 Dec 2015 20:36:53 +0000 (-0600) Subject: Possible fix for bug #68 (crash when running on ARM). X-Git-Tag: v2.1.0~166 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=5373852f573b91ebda175d3dc7fc111e2c5ca872 Possible fix for bug #68 (crash when running on ARM). --- diff --git a/token.c b/token.c index 66399d6..cd3c2ff 100644 --- a/token.c +++ b/token.c @@ -1213,12 +1213,12 @@ if (debug) printf("TokenizeLine: Calling fpop() from SRC_IREPT...\n"); *p++ = EOS; continue; case '$': // $, hex constant - if ((int)chrtab[*ln] & HDIGIT) + if (chrtab[*ln] & HDIGIT) { v = 0; // Parse the hex value - while ((int)hextab[*ln] >= 0) + while (hextab[*ln] >= 0) v = (v << 4) + (int)hextab[*ln++]; // ggn: Okay, some comments here are in order I think.... diff --git a/version.h b/version.h index 906bea9..7e04041 100644 --- a/version.h +++ b/version.h @@ -13,6 +13,6 @@ #define MAJOR 1 // Major version number #define MINOR 4 // Minor version number -#define PATCH 6 // Patch release number +#define PATCH 7 // Patch release number #endif // __VERSION_H__