ACPI: tools: pfrut: Do not initialize ret in main()
authorShi junming <junming@nfschina.com>
Thu, 25 Aug 2022 09:03:47 +0000 (17:03 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Sat, 3 Sep 2022 18:36:02 +0000 (20:36 +0200)
The initialization is unnecessary, because ret is always assigned a new
value before reading it.

Signed-off-by: Shi junming <junming@nfschina.com>
[ rjw: Subject edits, new changelog ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
tools/power/acpi/tools/pfrut/pfrut.c

index d79c335..52aa035 100644 (file)
@@ -190,7 +190,7 @@ int main(int argc, char *argv[])
        void *addr_map_capsule;
        struct stat st;
        char *log_buf;
-       int ret = 0;
+       int ret;
 
        if (getuid() != 0) {
                printf("Please run the tool as root - Exiting.\n");