diff options
Diffstat (limited to 'tools/lib/api/fs')
| -rw-r--r-- | tools/lib/api/fs/fs.c | 7 | ||||
| -rw-r--r-- | tools/lib/api/fs/tracing_path.c | 3 | 
2 files changed, 8 insertions, 2 deletions
| diff --git a/tools/lib/api/fs/fs.c b/tools/lib/api/fs/fs.c index 08556cf2c70d..ba7094b945ff 100644 --- a/tools/lib/api/fs/fs.c +++ b/tools/lib/api/fs/fs.c @@ -283,6 +283,11 @@ int filename__read_int(const char *filename, int *value)  	return err;  } +/* + * Parses @value out of @filename with strtoull. + * By using 0 for base, the strtoull detects the + * base automatically (see man strtoull). + */  int filename__read_ull(const char *filename, unsigned long long *value)  {  	char line[64]; @@ -292,7 +297,7 @@ int filename__read_ull(const char *filename, unsigned long long *value)  		return -1;  	if (read(fd, line, sizeof(line)) > 0) { -		*value = strtoull(line, NULL, 10); +		*value = strtoull(line, NULL, 0);  		if (*value != ULLONG_MAX)  			err = 0;  	} 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 @@  #include <stdio.h>  #include <stdlib.h>  #include <string.h> +#include <linux/string.h>  #include <errno.h>  #include <unistd.h>  #include "fs.h" @@ -118,7 +119,7 @@ static int strerror_open(int err, char *buf, size_t size, const char *filename)  	}  		break;  	default: -		snprintf(buf, size, "%s", strerror_r(err, sbuf, sizeof(sbuf))); +		snprintf(buf, size, "%s", str_error_r(err, sbuf, sizeof(sbuf)));  		break;  	} | 
