Changeset 3544 in kBuild
- Timestamp:
- Jan 29, 2022 2:22:03 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/expreval.c
r3400 r3544 319 319 320 320 /* 321 * Determin base 322 * .321 * Determin base. 322 * 323 323 * Recognize some exsotic prefixes here in addition to the two standard ones. 324 324 */ 325 if (*psz != '0' || psz[1] == '\0' || ISBLANK(psz[1]))325 if (*psz != '0') 326 326 uBase = 10; 327 327 else if (psz[1] == 'x' || psz[1] == 'X') … … 1907 1907 static unsigned char expr_map_get(char ch) 1908 1908 { 1909 return g_auchOpStartCharMap[(unsigned int)ch];1909 return g_auchOpStartCharMap[(unsigned char)ch]; 1910 1910 } 1911 1911
Note:
See TracChangeset
for help on using the changeset viewer.