mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-19 19:44:35 +08:00
Fix a copy-paste error
This commit is contained in:
@@ -83,7 +83,12 @@
|
||||
|
||||
static void set_nul_terminator(FAR char *str)
|
||||
{
|
||||
while ((*str >= '0' && *str <= '9') || *str == '.')
|
||||
/* The first non-hex character that is not ':' terminates the address */
|
||||
|
||||
while ((*str >= '0' && *str <= '9') ||
|
||||
(*str >= 'a' && *str <= 'f') ||
|
||||
(*str >= 'A' && *str <= 'F') ||
|
||||
*str == ':')
|
||||
{
|
||||
str++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user