Cleanup: missing ')'
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Fri, 15 Oct 2021 19:50:19 +0000 (15:50 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 2 Nov 2021 19:19:31 +0000 (15:19 -0400)
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I3198306b7f7cb081155dd53631db26e282f23526

src/bin/lttng-sessiond/ust-app.c

index 28c63e70c9b89521f458536946c00ed574f42a48..d303e8b66ec240f590cda13b621dc0a6918cecf4 100644 (file)
@@ -1974,8 +1974,10 @@ static int send_channel_pid_to_ust(struct ust_app *app,
                        WARN("Communication with application %d timed out on send_stream for stream \"%s\" of channel \"%s\" of session \"%" PRIu64 "\".",
                                        app->pid, stream->name, ua_chan->name,
                                        ua_sess->tracing_id);
-                       /* Treat this the same way as an application that is
-                        * exiting. */
+                       /*
+                        * Treat this the same way as an application that is
+                        * exiting.
+                        */
                        ret = -ENOTCONN;
                } else if (ret < 0) {
                        goto error;
@@ -6584,14 +6586,14 @@ static int add_enum_ust_registry(int sock, int sobjd, char *name,
        ua_sess = find_session_by_objd(app, sobjd);
        if (!ua_sess) {
                /* Return an error since this is not an error */
-               DBG("Application session is being torn down (session not found Aborting enum registration.");
+               DBG("Application session is being torn down (session not found). Aborting enum registration.");
                free(entries);
                goto error_rcu_unlock;
        }
 
        registry = get_session_registry(ua_sess);
        if (!registry) {
-               DBG("Application session is being torn down (registry not found Aborting enum registration.");
+               DBG("Application session is being torn down (registry not found). Aborting enum registration.");
                free(entries);
                goto error_rcu_unlock;
        }
This page took 0.027121 seconds and 4 git commands to generate.