compiler warning cleanup: is_signed_type: compare -1 to 1
[lttng-tools.git] / src / common / macros.h
index cce09a6cbb66b0474d25dabcf34a43e3728f71ef..70de2875e1007278019b5460b80cc453ad5a70ea 100644 (file)
@@ -77,7 +77,7 @@ void *zmalloc(size_t len)
 #define LTTNG_PACKED __attribute__((__packed__))
 #endif
 
-#define is_signed(type) (((type) (-1)) < 0)
+#define is_signed(type) (((type) -1) < (type) 1)
 
 /*
  * Align value to the next multiple of align. Returns val if it already is a
This page took 0.024195 seconds and 5 git commands to generate.