diff options
author | Rob Landley <rob@landley.net> | 2014-11-22 00:36:45 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-11-22 00:36:45 -0600 |
commit | f6c28b6e0017ac36190ee31132721a1c9e30f2b6 (patch) | |
tree | c242e6d66c112c46ec1a0010758ff00df29f2e87 /toys/other/acpi.c | |
parent | ea6fc27fc8853b317a78c402e290bdc0142792e8 (diff) | |
download | toybox-f6c28b6e0017ac36190ee31132721a1c9e30f2b6.tar.gz |
As long as Android's going to require fortify, fixup the warnings it generates.
Diffstat (limited to 'toys/other/acpi.c')
-rw-r--r-- | toys/other/acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/acpi.c b/toys/other/acpi.c index c4f31283..44fd03b1 100644 --- a/toys/other/acpi.c +++ b/toys/other/acpi.c @@ -38,7 +38,7 @@ int read_int_at(int dirfd, char *name) FILE *fil; if ((fd = openat(dirfd, name, O_RDONLY)) < 0) return -1; - fscanf(fil = xfdopen(fd, "r"), "%d", &ret); + if (!fscanf(fil = xfdopen(fd, "r"), "%d", &ret)) perror_exit("%s", name); fclose(fil); return ret; |