projects
/
zilutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
633e247
)
Fixed small bug at pass_alnums function
author
Jason Self
<j@jxself.org>
Sun, 23 Aug 2020 15:38:21 +0000
(08:38 -0700)
committer
Jason Self
<j@jxself.org>
Sun, 23 Aug 2020 15:38:21 +0000
(08:38 -0700)
zilasm/parser.cpp
patch
|
blob
|
history
diff --git
a/zilasm/parser.cpp
b/zilasm/parser.cpp
index b819792a14815b07fa6bc4c866a561df6d699f4f..9b976d9e0b05bcade90c8674a2470d8d656a7199 100644
(file)
--- a/
zilasm/parser.cpp
+++ b/
zilasm/parser.cpp
@@
-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;
}