aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ex-opt.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-09-29 10:01:06 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-09-29 10:01:06 +0000
commit6ef4914808571eff511c9d3fe98f913d4205c2d9 (patch)
tree52fc7070482cde5435d2b556c1e8ecf73ad44226 /epan/ex-opt.h
parenta1aee8c660519e3c6bcc2daeb6507d81d796033d (diff)
Corrected prototype for ex_opt_get_nth().
svn path=/trunk/; revision=30191
Diffstat (limited to 'epan/ex-opt.h')
-rw-r--r--epan/ex-opt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/ex-opt.h b/epan/ex-opt.h
index e939d84dde..0cfbc3aa1f 100644
--- a/epan/ex-opt.h
+++ b/epan/ex-opt.h
@@ -36,7 +36,7 @@ extern gboolean ex_opt_add(const gchar* optarg);
extern gint ex_opt_count(const gchar* key);
/* fetches the nth argument of a given key returns NULL if there isn't */
-extern const gchar* ex_opt_get_index(const gchar* key, guint index);
+extern const gchar* ex_opt_get_nth(const gchar* key, guint index);
/* extracts the next value of a given key */
extern const gchar* ex_opt_get_next(const gchar* key);