Fixed small bug at pass_alnums function
authorJason Self <j@jxself.org>
Sun, 23 Aug 2020 15:38:21 +0000 (08:38 -0700)
committerJason Self <j@jxself.org>
Sun, 23 Aug 2020 15:38:21 +0000 (08:38 -0700)
zilasm/parser.cpp

index b819792a14815b07fa6bc4c866a561df6d699f4f..9b976d9e0b05bcade90c8674a2470d8d656a7199 100644 (file)
@@ -99,7 +99,8 @@ pass_alnums (const char *p)
 {
   while (p && isalnum (*p))
     p++;
-  return (p && *p) ? p : NULL;
+  //return (p && *p) ? p : NULL;
+  return p;
 }