From: Christian Grothoff Date: Tue, 6 Dec 2011 13:54:35 +0000 (+0000) Subject: -use uint64_t instead of long long for GNUNET_ntohll/GNUNET_htonll X-Git-Tag: initial-import-from-subversion-38251~15723 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ace2c35bfb8d7eb2180569c9c0a7d92008c3718a;p=oweals%2Fgnunet.git -use uint64_t instead of long long for GNUNET_ntohll/GNUNET_htonll --- diff --git a/src/util/common_endian.c b/src/util/common_endian.c index f4641445d..34a1dbf54 100644 --- a/src/util/common_endian.c +++ b/src/util/common_endian.c @@ -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;