aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/text_import.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-17 21:26:25 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-17 21:26:25 +0000
commit3b7012a2de4f5edf61635a18219ac80ba4bd6258 (patch)
tree845b5bc12aeea7b15d109e95956a5cc132df1709 /gtk/text_import.h
parent41296be71360f6985cae1114e2f9988a5f6e6e7f (diff)
This ain't C++; you have to put "void" in as the argument list of
functions that take no arguments, otherwise the function is treated as a crufty old C function with undeclared arguments. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37211 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/text_import.h')
-rw-r--r--gtk/text_import.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/text_import.h b/gtk/text_import.h
index f85daef519..c64d462665 100644
--- a/gtk/text_import.h
+++ b/gtk/text_import.h
@@ -82,6 +82,6 @@ typedef struct
} text_import_info_t;
void text_import_setup(text_import_info_t *info);
-void text_import_cleanup();
+void text_import_cleanup(void);
#endif