diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 03:04:26 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 03:04:26 +0200 |
commit | 24873f0c06e6196a105f648e8fe29d19dcddd1de (patch) | |
tree | f0ad6ae52390a9ed3b63c6fe228da30f5cf92d7b /lib/hash.h | |
parent | bgpd: bgpd-no-as.patch (diff) | |
download | frr-24873f0c06e6196a105f648e8fe29d19dcddd1de.tar.xz frr-24873f0c06e6196a105f648e8fe29d19dcddd1de.zip |
lib: lib-warnings.patch
Remove compile warnings for the lib directory
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by:
Diffstat (limited to 'lib/hash.h')
-rw-r--r-- | lib/hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hash.h b/lib/hash.h index 9707dbd1b..0bc3089f3 100644 --- a/lib/hash.h +++ b/lib/hash.h @@ -64,7 +64,7 @@ struct hash extern struct hash *hash_create (unsigned int (*) (void *), int (*) (const void *, const void *)); extern struct hash *hash_create_size (unsigned int, unsigned int (*) (void *), - int (*) (const void *, const void *)); + int (*) (const void *, const void *)); extern void *hash_get (struct hash *, void *, void * (*) (void *)); extern void *hash_alloc_intern (void *); |