"strtoul()" returns a "long", not a "long long".
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 3 Dec 2003 19:47:36 +0000 (19:47 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 3 Dec 2003 19:47:36 +0000 (19:47 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9154 f5534014-38df-0310-8fa8-9805f1628bb7

wiretap/airopeek9.c

index a7e913c4ad79b8ef20268f79bfedbd699664ed29..81ad4a61c43236bed321176900d799e612f579da 100644 (file)
@@ -1,7 +1,7 @@
 /* airopeek9.c
  * Routines for opening AiroPeek V9 files
  *
- * $Id: airopeek9.c,v 1.2 2003/12/02 20:27:14 guy Exp $
+ * $Id: airopeek9.c,v 1.3 2003/12/03 19:47:36 guy Exp $
  *
  * Wiretap Library
  * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -144,7 +144,7 @@ static int wtap_file_read_number (wtap *wth, guint32 *num, int *err)
 {
     int ret;
     char str_num[12];
-    unsigned long long value;
+    unsigned long value;
     char *p;
 
     ret = wtap_file_read_till_separator (wth, str_num, sizeof (str_num)-1, "<",