From 8b05d0d42a5a7801e5c3bcd76c5230188cfbe236 Mon Sep 17 00:00:00 2001 From: Francis Deslauriers Date: Wed, 27 Nov 2019 14:14:24 -0500 Subject: [PATCH] Cleanup: typo: column -> colon Signed-off-by: Francis Deslauriers Signed-off-by: Mathieu Desnoyers Change-Id: I6873c94805ad02e4bba1431f7202ae0185d9698f --- liblttng-ust/lttng-context-provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblttng-ust/lttng-context-provider.c b/liblttng-ust/lttng-context-provider.c index 5557b137..b51ef23f 100644 --- a/liblttng-ust/lttng-context-provider.c +++ b/liblttng-ust/lttng-context-provider.c @@ -73,7 +73,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()) { -- 2.34.1