diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2006-11-18 03:37:34 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2006-11-18 03:37:34 +0000 |
commit | a339636b851194afa838b126ac2aba07a7851a3c (patch) | |
tree | db38a054fed3b5b4f68d69638db4eef59301d113 /wiretap/catapult_dct2000.c | |
parent | 1ed6291425e24db35ca2814102ddb87d6c7742e7 (diff) | |
download | wireshark-a339636b851194afa838b126ac2aba07a7851a3c.tar.gz wireshark-a339636b851194afa838b126ac2aba07a7851a3c.tar.bz2 wireshark-a339636b851194afa838b126ac2aba07a7851a3c.zip |
both recent fixes of warnings don't compile on Win32, inttypes.h is not available and PRId64 is not defined in the config.h.win32.
As discussed in a seperate thread the PRId64 should not be required.
svn path=/trunk/; revision=19925
Diffstat (limited to 'wiretap/catapult_dct2000.c')
-rw-r--r-- | wiretap/catapult_dct2000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/catapult_dct2000.c b/wiretap/catapult_dct2000.c index 5f4d653657..95847bad35 100644 --- a/wiretap/catapult_dct2000.c +++ b/wiretap/catapult_dct2000.c @@ -27,7 +27,7 @@ #include <string.h> #include <stdlib.h> #include <ctype.h> -#include <inttypes.h> +/*#include <inttypes.h>*/ #include "wtap-int.h" #include "file_wrappers.h" @@ -493,7 +493,7 @@ catapult_dct2000_seek_read(wtap *wth, gint64 seek_off, /* If get here, must have failed */ *err = errno; *err_info = g_strdup_printf("catapult dct2000: seek_read failed to read/parse " - "line at position %" PRId64, seek_off); + "line at position %lld", seek_off); return FALSE; } |