X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Flib%2Flttng-ctl%2Flttng-ctl.cpp;h=63841df403f249d5aeb681ce81a0ec671b7d4242;hb=4a467a8486ceab94f4b7444457027fb75cd85a39;hp=d4ec1c81b81bcd8886e07054fc5cbf1ef5ac993e;hpb=348ddc5c9107149d48b1f12d31a7e75e9b73b4da;p=lttng-tools.git diff --git a/src/lib/lttng-ctl/lttng-ctl.cpp b/src/lib/lttng-ctl/lttng-ctl.cpp index d4ec1c81b..63841df40 100644 --- a/src/lib/lttng-ctl/lttng-ctl.cpp +++ b/src/lib/lttng-ctl/lttng-ctl.cpp @@ -1769,10 +1769,14 @@ int lttng_list_syscalls(struct lttng_event **events) /* * Returns a human readable string describing - * the error code (a negative value). + * the error code (positive or negative value). */ const char *lttng_strerror(int code) { + if (code > 0) { + code = -code; + } + return error_get_str(code); }