diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-18 11:28:39 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-18 11:28:39 -0800 |
| commit | 0b0e99bfac8e11463ae15211882aab98ba150dcb (patch) | |
| tree | bbcce8c175438e8f6152207c9cd9099942230b2f /utils.c | |
| parent | e98574570ec0e355c6cff2b6e30bd992f20fe610 (diff) | |
A few more pedantic cleanups
Diffstat (limited to 'utils.c')
| -rw-r--r-- | utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ char unescapechar(const char *escaped, const char **end) break; } case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': { // Octal - ret = (unsigned char)escaped[0] - '0'; + ret = (unsigned char)(escaped[0] - '0'); if ('0' <= escaped[1] && escaped[1] <= '7') { ++len; ret = (ret << 3) | (escaped[1] - '0'); |
