summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_lsdb.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2015-03-03 08:51:53 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2015-04-21 10:17:31 +0200
commiteed3c48d3a7d2dae2cae2f2f250deffb843754a6 (patch)
tree07b2252438225065024d4a534eddf0e86c9b87a4 /ospfd/ospf_lsdb.c
parentef008d2f8dc8f7160d8a3d24a15f2fad79ef3242 (diff)
downloadquagga-eed3c48d3a7d2dae2cae2f2f250deffb843754a6.tar.bz2
quagga-eed3c48d3a7d2dae2cae2f2f250deffb843754a6.tar.xz
*: use void * for printing pointers
On higher warning levels, compilers expect %p printf arguments to be void *. Since format string / argument warnings can be useful otherwise, let's get rid of this noise by sprinkling casts to void * over printf calls. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospfd/ospf_lsdb.c')
-rw-r--r--ospfd/ospf_lsdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_lsdb.c b/ospfd/ospf_lsdb.c
index f7cf60fd..b92e7494 100644
--- a/ospfd/ospf_lsdb.c
+++ b/ospfd/ospf_lsdb.c
@@ -158,7 +158,7 @@ ospf_lsdb_delete (struct ospf_lsdb *lsdb, struct ospf_lsa *lsa)
if (lsa)
zlog_warn ("LSA[Type%d:%s]: LSA %p, lsa->lsdb %p",
lsa->data->type, inet_ntoa (lsa->data->id),
- lsa, lsa->lsdb);
+ (void *)lsa, (void *)lsa->lsdb);
return;
}