mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 03:34:22 +08:00
fix: compare unsigned
This commit is contained in:
parent
d127c2294c
commit
4d18b5a11c
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ const char *utf8_iterate(const char *buffer, size_t bufsize, int32_t *codepoint)
|
|||
return buffer;
|
||||
|
||||
count = utf8_check_first(buffer[0]);
|
||||
if (count <= 0)
|
||||
if (count == 0)
|
||||
return NULL;
|
||||
|
||||
if (count == 1)
|
||||
|
|
Loading…
Reference in a new issue