diff options
author | Guy Harris <guy@alum.mit.edu> | 2011-10-13 21:49:18 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2011-10-13 21:49:18 -0700 |
commit | 8b19304818ca8cf1cb8bf810fe3a43e7de216678 (patch) | |
tree | 9756ca0e7696b4b3cc4fbee3b44111d2964b781c /ospf.h | |
parent | e26785e5306793999adc3bc7fedf6e7c68ee1328 (diff) | |
download | tcpdump-8b19304818ca8cf1cb8bf810fe3a43e7de216678.tar.gz |
Constify some arguments.
Diffstat (limited to 'ospf.h')
-rw-r--r-- | ospf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -324,5 +324,5 @@ struct ospfhdr { #define ospf_lsa ospf_un.un_lsa /* Functions shared by ospf and ospf6 */ -extern int ospf_print_te_lsa(u_int8_t *, u_int); -extern int ospf_print_grace_lsa(u_int8_t *, u_int); +extern int ospf_print_te_lsa(const u_int8_t *, u_int); +extern int ospf_print_grace_lsa(const u_int8_t *, u_int); |