diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-12 16:58:49 +0100 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-06-12 17:08:26 +0100 |
commit | cedd7f2fa6823bca9ddcfb062f97ed83b11a80dd (patch) | |
tree | 4e6cc4d9ebf2bf861fb0278f8d49f8f3c030edc1 | |
parent | 393deb9bd663361e6b110d579a8b1d4c22667068 (diff) |
[cleanup] add const attribute to lib/if.c::if_dump
-rw-r--r-- | lib/if.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -422,7 +422,7 @@ if_flag_dump (unsigned long flag) /* For debugging */ static void -if_dump (struct interface *ifp) +if_dump (const struct interface *ifp) { struct listnode *node; struct connected *c; |