From a67c6273255c0357bf1e14ea35005b47c9a94e6c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 6 Jul 2000 00:20:50 +0000 Subject: Lots and lots of cleanups. -Erik --- libc/string/strsep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/string/strsep.c') diff --git a/libc/string/strsep.c b/libc/string/strsep.c index 21aa1bb58..703fe5c69 100644 --- a/libc/string/strsep.c +++ b/libc/string/strsep.c @@ -27,7 +27,7 @@ char *delim; if (!(p = *pp)) return 0; - if (q = strpbrk (p, delim)) + if ((q = strpbrk (p, delim))) { *pp = q + 1; *q = '\0'; -- cgit v1.2.3