aboutsummaryrefslogtreecommitdiffstats
path: root/merge.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-06-18 12:04:49 +0000
committerJörg Mayer <jmayer@loplof.de>2004-06-18 12:04:49 +0000
commita3b7664597002cf1a5c7cdc4917b8fe3717b2a43 (patch)
treeb6339528f4eeb7fffde06fcb57a32be2f73887bc /merge.h
parenta43f7d1f88d469b0063769511f214d097a390e52 (diff)
Fix compile errors on Suse 9.1:
- It's gboolean not boolean Fix warning about extraneous , at end of enum. svn path=/trunk/; revision=11177
Diffstat (limited to 'merge.h')
-rw-r--r--merge.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/merge.h b/merge.h
index 1748868d69..178e6c7d5e 100644
--- a/merge.h
+++ b/merge.h
@@ -2,7 +2,7 @@
* Definitions for menu routines with toolkit-independent APIs but
* toolkit-dependent implementations.
*
- * $Id: merge.h,v 1.1 2004/06/18 10:01:59 ulfl Exp $
+ * $Id: merge.h,v 1.2 2004/06/18 12:04:49 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -58,7 +58,7 @@ typedef struct merge_out_file_s {
typedef enum {
VERBOSE_NONE,
VERBOSE_ERRORS,
- VERBOSE_ALL,
+ VERBOSE_ALL
} verbose_e;
/** Current verbosity level, default is VERBOSE_NONE. */
@@ -137,7 +137,7 @@ merge_files(int in_file_count, merge_in_file_t in_files[], merge_out_file_t *out
* @param err wiretap error, if failed
* @return TRUE if function succeeded
*/
-extern boolean
+extern gboolean
merge_append_files(int in_file_count, merge_in_file_t in_files[], merge_out_file_t *out_file, int *err);