aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-11-01 21:17:29 +0000
committerGerald Combs <gerald@wireshark.org>2012-11-01 21:17:29 +0000
commit606a7433ce70eb1cefd2f39d619cab536276b653 (patch)
treecca7134373742379c35694a63afea0b8e11bdb78 /print.h
parentabf7f1c72429ca88b6203438d54fce6f41e95d04 (diff)
Add changes missing from the last commit.
svn path=/trunk/; revision=45862
Diffstat (limited to 'print.h')
-rw-r--r--print.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/print.h b/print.h
index 00907ea09a..fdb855eccc 100644
--- a/print.h
+++ b/print.h
@@ -59,9 +59,9 @@ typedef struct print_stream {
void *data;
} print_stream_t;
-extern print_stream_t *print_stream_text_new(int to_file, const char *dest);
+extern print_stream_t *print_stream_text_new(gboolean to_file, const char *dest);
extern print_stream_t *print_stream_text_stdio_new(FILE *fh);
-extern print_stream_t *print_stream_ps_new(int to_file, const char *dest);
+extern print_stream_t *print_stream_ps_new(gboolean to_file, const char *dest);
extern print_stream_t *print_stream_ps_stdio_new(FILE *fh);
extern gboolean print_preamble(print_stream_t *self, gchar *filename);