backlight: Fix copy/paste error printing an unrelated error code

udev_device_get_sysattr_value returns NULL on failure, but doesn't
provide an error code; thus, when printing an error from it, don't print
an unrelated error code from a previous call.

(cherry picked from commit cddc35f75e)
This commit is contained in:
Josh Triplett
2014-06-18 13:51:16 -04:00
committed by Zbigniew Jędrzejewski-Szmek
parent aa5882a2d1
commit b8b80c8aa1
+1 -1
View File
@@ -322,7 +322,7 @@ int main(int argc, char *argv[]) {
value = udev_device_get_sysattr_value(device, "brightness");
if (!value) {
log_error("Failed to read system attribute: %s", strerror(-r));
log_error("Failed to read system attribute");
return EXIT_FAILURE;
}