aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap-int.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-11-17 09:24:15 +0000
committerGuy Harris <guy@alum.mit.edu>2011-11-17 09:24:15 +0000
commite4658ced934430267b4ed33b630b79117660c379 (patch)
tree0fb1667fe2d922b3fa39c864325e344a0b01c773 /wiretap/wtap-int.h
parent31f61b75b29d30050db4039b685d26338c352181 (diff)
Rename pletonll() to reflect what it actually does, namely convert a
host-byte-order 64-bit integral quantity to little-endian byte order. svn path=/trunk/; revision=39900
Diffstat (limited to 'wiretap/wtap-int.h')
-rw-r--r--wiretap/wtap-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/wtap-int.h b/wiretap/wtap-int.h
index 3d76e47579..4fb6fe565c 100644
--- a/wiretap/wtap-int.h
+++ b/wiretap/wtap-int.h
@@ -296,8 +296,8 @@ extern gint wtap_num_file_types;
}
#endif
-#ifndef pletonll
-#define pletonll(p, v) \
+#ifndef phtolell
+#define phtolell(p, v) \
{ \
(p)[0] = (guint8)((v) >> 0); \
(p)[1] = (guint8)((v) >> 8); \