diff options
author | Gerald Combs <gerald@wireshark.org> | 2012-11-01 21:17:29 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2012-11-01 21:17:29 +0000 |
commit | 606a7433ce70eb1cefd2f39d619cab536276b653 (patch) | |
tree | cca7134373742379c35694a63afea0b8e11bdb78 /print.h | |
parent | abf7f1c72429ca88b6203438d54fce6f41e95d04 (diff) | |
download | wireshark-606a7433ce70eb1cefd2f39d619cab536276b653.tar.gz wireshark-606a7433ce70eb1cefd2f39d619cab536276b653.tar.bz2 wireshark-606a7433ce70eb1cefd2f39d619cab536276b653.zip |
Add changes missing from the last commit.
svn path=/trunk/; revision=45862
Diffstat (limited to 'print.h')
-rw-r--r-- | print.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |