summaryrefslogtreecommitdiff
path: root/randpkt_core/randpkt_core.h
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2016-03-31 14:08:20 +0200
committerMichael Mann <mmann78@netscape.net>2016-04-01 00:33:09 +0000
commitc119296504b5258f9e44e23b298ea6b6394d6d92 (patch)
tree2b5d552303cf37c7766d1bcf8821e8c75f5c6ff9 /randpkt_core/randpkt_core.h
parentf4bdaf9d15c2b4a8abd6e73389356af2aaa4bf99 (diff)
downloadwireshark-c119296504b5258f9e44e23b298ea6b6394d6d92.tar.gz
randpkt: restyle the list generation to get rid of the const compiler warning.
Change-Id: Id7c62ef18f919ba8a476898bc88c02fd3b6bf5a1 Reviewed-on: https://code.wireshark.org/review/14730 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'randpkt_core/randpkt_core.h')
-rw-r--r--randpkt_core/randpkt_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/randpkt_core/randpkt_core.h b/randpkt_core/randpkt_core.h
index f7633fc048..b45554f5c1 100644
--- a/randpkt_core/randpkt_core.h
+++ b/randpkt_core/randpkt_core.h
@@ -48,7 +48,7 @@ typedef struct {
guint randpkt_example_count(void);
/* Return the list of the active examples */
-void randpkt_example_list(const char*** abbrev_list, const char*** longname_list, unsigned* list_num);
+void randpkt_example_list(char*** abbrev_list, char*** longname_list);
/* Seed the random-number generator */
void randpkt_seed(void);