summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-03-11 12:08:09 +0000
committer/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-03-11 12:08:09 +0000
commitf6a555eca69a7f179ab123c36b36798ced26388f (patch)
tree30b4630f51dd2f69eaee6cd6b130b75a5872ff54
parent87a7abff5718427c247fb7b5e2834ca4f09e64c5 (diff)
fix minor shadow warning. It seems that the symbol "index" is defined in some systems (reported by Petr Pisar)
-rw-r--r--include/libnfnetlink/libnfnetlink.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libnfnetlink/libnfnetlink.h b/include/libnfnetlink/libnfnetlink.h
index 37fa663..5776da6 100644
--- a/include/libnfnetlink/libnfnetlink.h
+++ b/include/libnfnetlink/libnfnetlink.h
@@ -195,7 +195,7 @@ int nlif_fd(struct nlif_handle *nlif_handle);
int nlif_query(struct nlif_handle *nlif_handle);
int nlif_catch(struct nlif_handle *nlif_handle);
int nlif_index2name(struct nlif_handle *nlif_handle,
- unsigned int index,
+ unsigned int if_index,
char *name);
/* Pablo: What is the equivalence of be64_to_cpu in userspace?