typo
authorJeremy Harris <jgh146exb@wizmail.org>
Wed, 6 Dec 2023 22:08:08 +0000 (22:08 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Wed, 6 Dec 2023 22:08:16 +0000 (22:08 +0000)
Broken-by: 5930166b4433
src/src/os.c

index 5e5899eeb8709be9c91f405b3d8fcb5015f8f2c1..c6d1e06c2a2841615478fa7a12416c7bc2bfc68e 100644 (file)
@@ -901,7 +901,7 @@ return buffer ? buffer : realloc(b, strlen(b) + 1);
 char *
 strchrnul(const char * s, int c)
 {
-while (*s != c && *s) s++
+while (*s != c && *s) s++;
 return CS s;
 }
 #endif