Fix: missing initializer braces warning
[babeltrace.git] / formats / lttng-live / lttng-live-plugin.c
index 8c4b30765fa0767dfd95a07078456bd0f77f8861..ed52a995c2c55ca886852d05c71e222bb1cf3000 100644 (file)
@@ -103,7 +103,7 @@ int setup_sighandler(void)
 static
 int parse_url(const char *path, struct lttng_live_ctx *ctx)
 {
-       char remain[3][MAXNAMLEN] = { 0 };
+       char remain[3][MAXNAMLEN] = { { 0 } };
        int ret = -1, proto, proto_offset = 0;
        size_t path_len = strlen(path); /* not accounting \0 */
 
This page took 0.022783 seconds and 4 git commands to generate.