Fix: Missing semicolon after debug statement
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 20 May 2016 21:00:54 +0000 (17:00 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 20 May 2016 21:13:14 +0000 (17:13 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-sessiond/save.c
src/bin/lttng/commands/add_context.c
src/common/consumer.c

index e9f651ce2378bd6a6beaa8df025b6f10450ae3f1..6f095ec27b8e76e2572c06adf4b2b10e4803337d 100644 (file)
@@ -903,7 +903,7 @@ int save_ust_context(struct config_writer *writer,
                        context_type_string = get_ust_context_type_string(
                                ctx->ctx.ctx);
                        if (!context_type_string) {
-                               ERR("Unsupported UST context type.")
+                               ERR("Unsupported UST context type.");
                                        ret = LTTNG_ERR_INVALID;
                                goto end;
                        }
index c6f4946a0e4a7fb1e2a3049be497a017b089376f..2890a4304b3731f290ea655deb5f8b29512daa42 100644 (file)
@@ -631,7 +631,7 @@ static int add_context(char *session_name)
                                                opt_channel_name);
                        } else {
                                MSG("%s context %s added to all channels",
-                                               get_domain_str(dom.type), type->opt->symbol)
+                                               get_domain_str(dom.type), type->opt->symbol);
                        }
                        success = 1;
                }
index 45c2785b26d8929b5f2c44b27124e4e7df3bbd7c..1c6838be27a346bf80d3fe4dff05563c39c73a80 100644 (file)
@@ -1010,7 +1010,7 @@ struct lttng_consumer_channel *consumer_allocate_channel(uint64_t key,
 
        CDS_INIT_LIST_HEAD(&channel->streams.head);
 
-       DBG("Allocated channel (key %" PRIu64 ")", channel->key)
+       DBG("Allocated channel (key %" PRIu64 ")", channel->key);
 
 end:
        return channel;
This page took 0.030022 seconds and 4 git commands to generate.