Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/libc/stdlib/lib_checkbase.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ int lib_checkbase(int base, FAR const char **pptr)

/* Check for incorrect bases. */

else if (base < 2 || base > 26)
else if (base < 2 || base > 36)
{
return -1; /* Means incorrect base */
}
Expand Down
Loading