diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-04 19:53:07 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-04 19:53:07 +0000 |
commit | 40f237fe9c54fff06dee496b830ab0e13ab87e2b (patch) | |
tree | ad9348de5c96437f601ba7f26614988978c394f0 /src/htsentities.sh | |
parent | 04cfb2db0ed39b11ebcb6f6ad5c4cc36e298983b (diff) |
Fixed "this decimal constant is unsigned only in ISO C90"
Diffstat (limited to 'src/htsentities.sh')
-rwxr-xr-x | src/htsentities.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htsentities.sh b/src/htsentities.sh index 5039aee..50745cd 100755 --- a/src/htsentities.sh +++ b/src/htsentities.sh @@ -56,7 +56,7 @@ EOF i=$[${i}+1] done echo -e " /* $A */" - echo -e " case ${hash}:" + echo -e " case ${hash}u:" echo -e " if (len == ${#ent} /* && strncmp(ent, \"${ent}\") == 0 */) {" echo -e " return ${code};" echo -e " }" |