From 37ff29b8201d00bb9209e387a427751c2dc5ee2c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 31 Oct 1992 23:00:47 +0000 Subject: Add parentheses to expressions like (c = *p++) as per suggestion from gcc -Wall. --- lib/makepath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/makepath.c b/lib/makepath.c index 5c6112414..98b78a1e6 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)) -- cgit v1.2.3-70-g09d2