aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap-int.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-07-29 20:49:32 +0000
committerGuy Harris <guy@alum.mit.edu>2003-07-29 20:49:32 +0000
commit98909d90454cf36a6c657bcd29023613f4b90e92 (patch)
tree6f0353628e6ab9787c86c45fc8acc7594aa36527 /wiretap/wtap-int.h
parent2a679c88f88ee96dc781368e0643b9c578134f74 (diff)
Clean up argument names.
svn path=/trunk/; revision=8097
Diffstat (limited to 'wiretap/wtap-int.h')
-rw-r--r--wiretap/wtap-int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/wiretap/wtap-int.h b/wiretap/wtap-int.h
index bdf788b2d0..a02d313876 100644
--- a/wiretap/wtap-int.h
+++ b/wiretap/wtap-int.h
@@ -1,6 +1,6 @@
/* wtap-int.h
*
- * $Id: wtap-int.h,v 1.37 2003/07/29 20:41:19 guy Exp $
+ * $Id: wtap-int.h,v 1.38 2003/07/29 20:49:32 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -218,8 +218,8 @@ struct wtap_dumper {
(((x)&0x00FF)<<8))
/* Turn host-byte-order values into little-endian values. */
-#define htoles(ll) GUINT16_TO_LE(ll)
-#define htolel(ll) GUINT32_TO_LE(ll)
+#define htoles(s) GUINT16_TO_LE(s)
+#define htolel(l) GUINT32_TO_LE(l)
#ifdef G_HAVE_GINT64
#define htolell(ll) GUINT64_TO_LE(ll)
#endif /* G_HAVE_GINT64 */