Drop parens from around already-parenthesized defines

This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2021-03-05 17:57:14 +01:00
parent 6d12f1b787
commit fd4e991dfd
6 changed files with 10 additions and 10 deletions

View File

@@ -71,7 +71,7 @@ char *strnappend(const char *s, const char *suffix, size_t b) {
assert(suffix);
a = strlen(s);
if (b > (SIZE_MAX) - a)
if (b > SIZE_MAX - a)
return NULL;
r = new(char, a+b+1);