Cleanup: apply `include-what-you-use` guideline for `size_t`
[lttng-ust.git] / liblttng-ust / lttng-context-provider.c
index 5557b137cdc24f4ed68077c7bc72d23f94e7e779..edb1e9b2e076a4297653b010b87978e5eb67c07d 100644 (file)
@@ -21,6 +21,7 @@
  */
 
 #define _LGPL_SOURCE
+#include <stddef.h>
 #include <sys/types.h>
 #include <unistd.h>
 #include <lttng/ust-context-provider.h>
@@ -73,7 +74,7 @@ int lttng_ust_context_provider_register(struct lttng_ust_context_provider *provi
        /* Provider name starts with "$app.". */
        if (strncmp("$app.", provider->name, strlen("$app.")) != 0)
                return -EINVAL;
-       /* Provider name cannot contain a column character. */
+       /* Provider name cannot contain a colon character. */
        if (strchr(provider->name, ':'))
                return -EINVAL;
        if (ust_lock()) {
This page took 0.024157 seconds and 4 git commands to generate.