mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-24 16:26:13 +00:00
fix warn in sysfs_{rc6, rps}*: ignoring return value of 'fscanf'
Signed-off-by: Imre Deak <imre.deak@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
b614b4d648
commit
3a622b9784
@ -38,6 +38,7 @@
|
||||
static unsigned int readit(const char *path)
|
||||
{
|
||||
unsigned int ret;
|
||||
int scanned;
|
||||
|
||||
FILE *file;
|
||||
file = fopen(path, "r");
|
||||
@ -45,7 +46,9 @@ static unsigned int readit(const char *path)
|
||||
fprintf(stderr, "Couldn't open %s (%d)\n", path, errno);
|
||||
abort();
|
||||
}
|
||||
fscanf(file, "%u", &ret);
|
||||
scanned = fscanf(file, "%u", &ret);
|
||||
assert(scanned == 1);
|
||||
|
||||
fclose(file);
|
||||
|
||||
return ret;
|
||||
|
@ -64,9 +64,13 @@ struct junk {
|
||||
static int readval(FILE *filp)
|
||||
{
|
||||
int val;
|
||||
int scanned;
|
||||
|
||||
fflush(filp);
|
||||
rewind(filp);
|
||||
fscanf(filp, "%d", &val);
|
||||
scanned = fscanf(filp, "%d", &val);
|
||||
assert(scanned == 1);
|
||||
|
||||
return val;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user