aboutsummaryrefslogtreecommitdiffstats
path: root/utils.c
diff options
context:
space:
mode:
authorGustav HÃ¥llberg <gustav@gmail.com>2008-12-29 19:36:06 (GMT)
committerGustav HÃ¥llberg <gustav@gmail.com>2009-01-16 23:34:19 (GMT)
commit8b5e00d0d36aa59d86cf6d6e8e710817a7ee772a (patch)
tree19d3a707c0f3d5fc5f86add5966ac6b24030703d /utils.c
parentba902ad54b651134a1261c9f4be227a462c54f3b (diff)
downloadpowwow-8b5e00d0d36aa59d86cf6d6e8e710817a7ee772a.zip
powwow-8b5e00d0d36aa59d86cf6d6e8e710817a7ee772a.tar.gz
powwow-8b5e00d0d36aa59d86cf6d6e8e710817a7ee772a.tar.bz2
fixed some compilation warnings
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index 06018d7..76391a9 100644
--- a/utils.c
+++ b/utils.c
@@ -959,7 +959,7 @@ int read_settings __P0 (void)
left -= n;
/* Clear all \n prefixed with a literal backslash '\\' */
- while( cmd = strstr( buf, "\\\n" ) ) {
+ while ((cmd = strstr(buf, "\\\n"))) {
cmd[ 0 ] = ' ';
cmd[ 1 ] = ' ';
}