X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Futils.cpp;h=3d02f6044b20cd66b5a9920fc18ebdcedcf04a05;hb=cd9adb8b829564212158943a0d279bb35322ab30;hp=6ea98ec7cea8ea15c59b05a283764a3ce4d44982;hpb=e665dfbce25215d5ec77ff03a279c7163b337db1;p=lttng-tools.git diff --git a/src/bin/lttng-relayd/utils.cpp b/src/bin/lttng-relayd/utils.cpp index 6ea98ec7c..3d02f6044 100644 --- a/src/bin/lttng-relayd/utils.cpp +++ b/src/bin/lttng-relayd/utils.cpp @@ -22,11 +22,11 @@ static char *create_output_path_auto(const char *path_name) { int ret; - char *traces_path = NULL; + char *traces_path = nullptr; const char *default_path; default_path = utils_get_home_dir(); - if (default_path == NULL) { + if (default_path == nullptr) { ERR("Home path not found.\n \ Please specify an output path using -o, --output PATH"); goto exit; @@ -43,7 +43,7 @@ exit: static char *create_output_path_noauto(const char *path_name) { int ret; - char *traces_path = NULL; + char *traces_path = nullptr; char *full_path; full_path = utils_expand_path(opt_output_path); @@ -70,7 +70,7 @@ char *create_output_path(const char *path_name) { LTTNG_ASSERT(path_name); - if (opt_output_path == NULL) { + if (opt_output_path == nullptr) { return create_output_path_auto(path_name); } else { return create_output_path_noauto(path_name);