projects
/
sasm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7626e2e
)
Convert to lowercase before check
author
Robert Pengelly
<robertapengelly@hotmail.com>
Tue, 22 Jul 2025 22:32:40 +0000
(23:32 +0100)
committer
Robert Pengelly
<robertapengelly@hotmail.com>
Tue, 22 Jul 2025 22:32:40 +0000
(23:32 +0100)
expr.c
patch
|
blob
|
history
diff --git
a/expr.c
b/expr.c
index 2ee2971941c71995eab5ad52864622e84e9b1b72..79f7be9d3162c048297d3677c86a30c0eec07946 100644
(file)
--- a/
expr.c
+++ b/
expr.c
@@
-353,7
+353,7
@@
static struct section *operand (char *start, char **pp, struct expr *expr, int e
temp++;
}
- if (*temp &&
*temp
== 'h') {
+ if (*temp &&
tolower ((int) *temp)
== 'h') {
*temp = ' ';
goto is_hex;