diff options
author | Guy Harris <guy@alum.mit.edu> | 2011-05-17 22:18:32 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2011-05-17 22:18:32 +0000 |
commit | 1372515b029def7cfb5f3004ca0cca9c04ae18e2 (patch) | |
tree | fbda41e147559bc96c05c9840a765d96a41c9633 /print.c | |
parent | 592f0ba6da8cce7a4189d73cc787185c37623511 (diff) | |
download | wireshark-1372515b029def7cfb5f3004ca0cca9c04ae18e2.tar.gz wireshark-1372515b029def7cfb5f3004ca0cca9c04ae18e2.tar.bz2 wireshark-1372515b029def7cfb5f3004ca0cca9c04ae18e2.zip |
More eradication of old-style function definitions.
svn path=/trunk/; revision=37216
Diffstat (limited to 'print.c')
-rw-r--r-- | print.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1285,7 +1285,7 @@ print_stream_ps_stdio_new(FILE *fh) return print_stream_ps_alloc(TRUE, fh); } -output_fields_t* output_fields_new() +output_fields_t* output_fields_new(void) { output_fields_t* fields = g_new(output_fields_t, 1); fields->print_header = FALSE; |