- Allocate buffer large enough to contain UNIX_PATH_MAX size pathnames in case of...
[oweals/gnunet.git] / src / util / test_common_endian.c
index fb556c7f48a25affeaee57eefaace858ba82e4fd..8974b43fe842e3a9093b887a9d83e4cd6879719e 100644 (file)
@@ -22,7 +22,7 @@
  * @brief testcase for common_endian.c
  */
 #include "platform.h"
-#include "gnunet_common.h"
+#include "gnunet_util_lib.h"
 
 #define CHECK(n) if (n != GNUNET_htonll(GNUNET_ntohll(n))) return 1;
 
@@ -33,8 +33,8 @@ main (int argc, char *argv[])
   CHECK (1);
   CHECK (0x12345678);
   CHECK (123456789012345LL);
-  if ((0x1234567890ABCDEFLL !=
-       GNUNET_htonll (0xEFCDAB9078563412LL)) && 42 != htonl (42))
+  if ((0x1234567890ABCDEFLL != GNUNET_htonll (0xEFCDAB9078563412LL)) &&
+      42 != htonl (42))
     return 1;
   return 0;
 }