diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-07-08 14:26:50 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-07-12 14:20:29 -0400 |
commit | b31e3e3316a78e4a2cf23be8e0d47e5e5a025bde (patch) | |
tree | c8445fb4cc9ad733493458ce2cdb0d1bbb1e8cf5 /tools/lib/api/fs/tracing_path.c | |
parent | c3cec9e68f12d0046f991378391172958b5315d9 (diff) |
tools lib api fs: Use str_error_r()
To make it portable to non-glibc systems, that follow the XSI variant
instead of the GNU specific one that gets in place when _GNU_SOURCE is
defined.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-mixgnh3iyajuqogn2opsocdy@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/api/fs/tracing_path.c')
-rw-r--r-- | tools/lib/api/fs/tracing_path.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lib/api/fs/tracing_path.c b/tools/lib/api/fs/tracing_path.c index a26bb5ea8283..251b7c342a87 100644 --- a/tools/lib/api/fs/tracing_path.c +++ b/tools/lib/api/fs/tracing_path.c | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <stdio.h> | 5 | #include <stdio.h> |
6 | #include <stdlib.h> | 6 | #include <stdlib.h> |
7 | #include <string.h> | 7 | #include <string.h> |
8 | #include <linux/string.h> | ||
8 | #include <errno.h> | 9 | #include <errno.h> |
9 | #include <unistd.h> | 10 | #include <unistd.h> |
10 | #include "fs.h" | 11 | #include "fs.h" |
@@ -118,7 +119,7 @@ static int strerror_open(int err, char *buf, size_t size, const char *filename) | |||
118 | } | 119 | } |
119 | break; | 120 | break; |
120 | default: | 121 | default: |
121 | snprintf(buf, size, "%s", strerror_r(err, sbuf, sizeof(sbuf))); | 122 | snprintf(buf, size, "%s", str_error_r(err, sbuf, sizeof(sbuf))); |
122 | break; | 123 | break; |
123 | } | 124 | } |
124 | 125 | ||