cleanup: Remove redefinition of CHAR_BIT
[lttng-ust.git] / liblttng-ust / lttng-context-vgid.c
index 7536d382a6242ca9a73f82ae26d236d2f6f432a4..c1a630ac7ea263fa5026976130d8e3f1bc3cae01 100644 (file)
@@ -8,6 +8,7 @@
  */
 
 #define _LGPL_SOURCE
+#include <limits.h>
 #include <stddef.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -97,7 +98,7 @@ int lttng_add_vgid_to_ctx(struct lttng_ust_ctx **ctx)
 
        type = lttng_ust_create_type_integer(sizeof(gid_t) * CHAR_BIT,
                        lttng_alignof(gid_t) * CHAR_BIT,
-                       lttng_is_signed_type(gid_t),
+                       lttng_ust_is_signed_type(gid_t),
                        BYTE_ORDER, 10);
        if (!type)
                return -ENOMEM;
This page took 0.02365 seconds and 4 git commands to generate.