Fix some types, to squelch compiler warnings (this should introduce

another valid warning, if you've turned the warnings up high enough; we
need to generate a zlib version of stdout).

svn path=/trunk/; revision=32027
This commit is contained in:
Guy Harris 2010-02-27 02:23:44 +00:00
parent 79c2cf4c30
commit c1efdf167a
1 changed files with 2 additions and 2 deletions

View File

@ -760,7 +760,7 @@ wtap_dumper* wtap_dump_open(const char *filename, int filetype, int encap,
int snaplen, gboolean compressed, int *err)
{
wtap_dumper *wdh;
FILE *fh;
FILE_T fh;
/* Check whether we can open a capture file with that file type
and that encapsulation. */
@ -812,7 +812,7 @@ wtap_dumper* wtap_dump_fdopen(int fd, int filetype, int encap, int snaplen,
gboolean compressed, int *err)
{
wtap_dumper *wdh;
FILE *fh;
FILE_T fh;
/* Check whether we can open a capture file with that file type
and that encapsulation. */