summaryrefslogtreecommitdiffstats
path: root/lib/qpath.c
diff options
context:
space:
mode:
authorChris Hall <chris.hall@highwayman.com>2011-09-02 12:07:01 +0100
committerChris Hall <chris.hall@highwayman.com>2011-09-02 12:07:01 +0100
commit3593a823ca0dd92bbe58aa3464d8a371f6f35e70 (patch)
tree933eadc60f5c9e16dc5d9bf6b3762870a11d1a81 /lib/qpath.c
parent3690074a486cfada568975e287d9cbb9e687501f (diff)
downloadquagga-3593a823ca0dd92bbe58aa3464d8a371f6f35e70.tar.bz2
quagga-3593a823ca0dd92bbe58aa3464d8a371f6f35e70.tar.xz
Changed gcc options to -std=c99 and -O2, and tighted warnings.
Some small changes to accomodate same.
Diffstat (limited to 'lib/qpath.c')
-rw-r--r--lib/qpath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/qpath.c b/lib/qpath.c
index 955f307f..1a05e507 100644
--- a/lib/qpath.c
+++ b/lib/qpath.c
@@ -98,9 +98,9 @@ qpath_reset(qpath qp, free_keep_b free_structure)
qs_reset(qp->path, keep_it) ;
if (free_structure)
- XFREE(MTYPE_QPATH, qp) ; /* sets qp = NULL */
+ XFREE(MTYPE_QPATH, qp) ; /* sets qp = NULL */
else
- ;
+ {;}; /* currently nothing else to do */
return qp ;
} ;