Cleanup: Replace all perror() uses by the PERROR macro
[lttng-tools.git] / src / bin / lttng / commands / view.c
index 1de6940aa8c1612342ba53a56f9e36c7329609e5..e1e1564c16ebe9f0e3650a27ac80eac1d7c34638 100644 (file)
@@ -316,14 +316,14 @@ static char *build_live_path(char *session_name)
 
        ret = gethostname(hostname, sizeof(hostname));
        if (ret < 0) {
-               perror("gethostname");
+               PERROR("gethostname");
                goto error;
        }
 
        ret = asprintf(&path, "net://localhost/host/%s/%s", hostname,
                        session_name);
        if (ret < 0) {
-               perror("asprintf live path");
+               PERROR("asprintf live path");
                goto error;
        }
 
This page took 0.023116 seconds and 4 git commands to generate.