]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
fsck: tiny coding style fix
authorKarel Zak <kzak@redhat.com>
Tue, 6 Mar 2012 12:56:54 +0000 (13:56 +0100)
committerKarel Zak <kzak@redhat.com>
Tue, 20 Mar 2012 10:22:09 +0000 (11:22 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
disk-utils/fsck.c

index ff16ebcf146b3607d57643b81fbabe781a8da52f..a019a6979bdee048f511448c80b158af352e7f62 100644 (file)
@@ -1307,7 +1307,7 @@ static void signal_cancel(int sig __attribute__((__unused__)))
        cancel_requested++;
 }
 
-static void PRS(int argc, char *argv[])
+static void parse_argv(int argc, char *argv[])
 {
        int     i, j;
        char    *arg, *dev, *tmp = 0;
@@ -1483,7 +1483,7 @@ int main(int argc, char *argv[])
        mnt_init_debug(0);              /* init libmount debug mask */
        mntcache = mnt_new_cache();     /* no fatal error if failed */
 
-       PRS(argc, argv);
+       parse_argv(argc, argv);
 
        if (!notitle)
                printf(_("%s from %s\n"), program_invocation_short_name, PACKAGE_STRING);