diff options
author | Jörg Mayer <jmayer@loplof.de> | 2011-05-19 05:08:42 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2011-05-19 05:08:42 +0000 |
commit | 2b3167dcf9d91b3b4f3ec21ceb00d17ad66f109e (patch) | |
tree | 3df8231c5b7982ad2ebcd40bbe45ca63d036eba5 /plugins | |
parent | ef718b0209e73e60537a7c7bfba2f0c3c6f66eea (diff) | |
download | wireshark-2b3167dcf9d91b3b4f3ec21ceb00d17ad66f109e.tar.gz wireshark-2b3167dcf9d91b3b4f3ec21ceb00d17ad66f109e.tar.bz2 wireshark-2b3167dcf9d91b3b4f3ec21ceb00d17ad66f109e.zip |
Fix another old style function declaration warning
svn path=/trunk/; revision=37281
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mate/mate_setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mate/mate_setup.c b/plugins/mate/mate_setup.c index aee9c16c1a..c711188ba0 100644 --- a/plugins/mate/mate_setup.c +++ b/plugins/mate/mate_setup.c @@ -567,7 +567,7 @@ static void analyze_config(void) { } -extern mate_config* mate_cfg() { +extern mate_config* mate_cfg(void) { return matecfg; } |