From: Jim Meyering Date: Sat, 31 Oct 1992 23:00:47 +0000 (+0000) Subject: Add parentheses to expressions like (c = *p++) as per suggestion X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26e411da187cbe2e67d334a9230f4836219c24e2;p=pspp Add parentheses to expressions like (c = *p++) as per suggestion from gcc -Wall. --- diff --git a/lib/makepath.c b/lib/makepath.c index 5c6112414c..98b78a1e65 100644 --- a/lib/makepath.c +++ b/lib/makepath.c @@ -127,7 +127,7 @@ make_path (argpath, mode, parent_mode, owner, group, verbose_fmt_string) slash = dirpath; while (*slash == '/') slash++; - while (slash = index (slash, '/')) + while ((slash = index (slash, '/'))) { *slash = '\0'; if (stat (dirpath, &stats))