diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-05-14 10:39:29 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-05-14 10:39:29 +0000 |
commit | 93370c8672fd7f022789a7be2fcb1b812a23bbee (patch) | |
tree | c58b18192f6dbac01d9adfd34db78d7159aa6fcb /epan | |
parent | 088398741db4fcc1d8e9c7adcf4a7a54ca59080a (diff) | |
download | wireshark-93370c8672fd7f022789a7be2fcb1b812a23bbee.tar.gz wireshark-93370c8672fd7f022789a7be2fcb1b812a23bbee.tar.bz2 wireshark-93370c8672fd7f022789a7be2fcb1b812a23bbee.zip |
Fix a compiler warning.
svn path=/trunk/; revision=5464
Diffstat (limited to 'epan')
-rw-r--r-- | epan/plugins.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/plugins.c b/epan/plugins.c index d9b14292ec..c53cf4fa92 100644 --- a/epan/plugins.c +++ b/epan/plugins.c @@ -1,7 +1,7 @@ /* plugins.c * plugin routines * - * $Id: plugins.c,v 1.53 2002/05/14 10:32:12 guy Exp $ + * $Id: plugins.c,v 1.54 2002/05/14 10:39:29 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -227,7 +227,7 @@ plugins_scan_dir(const char *dirname) if (!g_module_symbol(handle, "plugin_init", (gpointer*)&init)) { g_warning("The plugin %s has a plugin_reg_handoff symbol but no plugin_init routine", - name, filename); + name); g_module_close(handle); continue; } |