Use SIZE_MAX instead of -1ULL for size_t parameter
[lttng-modules.git] / lttng-events.c
index 6bfe710f57ea24b9d2da90fc4de04f96347da325..95a79cf75dc10de27daf335b927043f9231bfa29 100644 (file)
@@ -1146,7 +1146,7 @@ static
 int lttng_match_enabler_star_glob(const char *desc_name,
                const char *pattern)
 {
-       if (!strutils_star_glob_match(pattern, -1ULL, desc_name, -1ULL))
+       if (!strutils_star_glob_match(pattern, SIZE_MAX, desc_name, SIZE_MAX))
                return 0;
        return 1;
 }
This page took 0.022646 seconds and 4 git commands to generate.