X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Futils.c;h=330c04e82916359053981b69025c9f6339ab1a1f;hp=3a4f850ba66b22f19d78bdbd9dd52e1257d8ba75;hb=2dcd84b7ef877129d6ae2525b97f9bf6c7a25a0d;hpb=664958450af7685c38cccfc9109d8f5b050e0fd9 diff --git a/src/common/utils.c b/src/common/utils.c index 3a4f850ba..330c04e82 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -198,7 +198,7 @@ char *utils_expand_path(const char *path) if (*path != '/' && strncmp(path, "./", 2) != 0 && strncmp(path, "../", 3) != 0) { snprintf(absolute_path, PATH_MAX, "./%s", path); - /* Else, we just copy the path */ + /* Else, we just copy the path */ } else { strncpy(absolute_path, path, PATH_MAX); }