-use uint64_t instead of long long for GNUNET_ntohll/GNUNET_htonll
authorChristian Grothoff <christian@grothoff.org>
Tue, 6 Dec 2011 13:54:35 +0000 (13:54 +0000)
committerChristian Grothoff <christian@grothoff.org>
Tue, 6 Dec 2011 13:54:35 +0000 (13:54 +0000)
src/util/common_endian.c

index f4641445d0112632d3cd147753c502344d506a1e..34a1dbf549238543916f1dac06b3fc2cf803dae7 100644 (file)
@@ -30,7 +30,7 @@
 #define LOG(kind,...) GNUNET_log_from (kind, "util",__VA_ARGS__)
 
 uint64_t
-GNUNET_ntohll (uint64_t)
+GNUNET_ntohll (uint64_t n)
 {
 #if __BYTE_ORDER == __BIG_ENDIAN
   return n;