summaryrefslogtreecommitdiffstats
path: root/lib/qstring.c
diff options
context:
space:
mode:
authorChris Hall <GMCH@hestia.halldom.com>2010-04-16 20:10:05 +0100
committerChris Hall <GMCH@hestia.halldom.com>2010-04-16 20:10:05 +0100
commit62ecf51e3c652c65c84bb94d794f2533cee1fb9c (patch)
treec41ff6a9749574635120efa642d1b123971beb3e /lib/qstring.c
parenta20526cc30d68ca5c4c7951238faafa8969a31c1 (diff)
downloadquagga-62ecf51e3c652c65c84bb94d794f2533cee1fb9c.tar.bz2
quagga-62ecf51e3c652c65c84bb94d794f2533cee1fb9c.tar.xz
Fixes to compile on FreeBSD 8.0 with gcc 4.2.1
Diffstat (limited to 'lib/qstring.c')
-rw-r--r--lib/qstring.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/qstring.c b/lib/qstring.c
index a3dc95cd..5ca4d868 100644
--- a/lib/qstring.c
+++ b/lib/qstring.c
@@ -490,8 +490,8 @@ qs_cmp_sig(qstring a, qstring b)
{
if (isspace(*p_a) && isspace(*p_b))
{
- do { ++p_a ; } while isspace(*p_a) ;
- do { ++p_b ; } while isspace(*p_b) ;
+ do { ++p_a ; } while (isspace(*p_a)) ;
+ do { ++p_b ; } while (isspace(*p_b)) ;
} ;
if (*p_a != *p_b)