]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
raw: fix compiler warning [-Wmissing-prototypes]
authorKarel Zak <kzak@redhat.com>
Mon, 16 Jul 2012 16:45:52 +0000 (18:45 +0200)
committerKarel Zak <kzak@redhat.com>
Mon, 16 Jul 2012 16:45:52 +0000 (18:45 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
disk-utils/raw.c

index 1e7a6fbd7b898cbb0f40ca2eb6bb77fb84310384..eb58e9644d667911f951f6eaa63e1a468553b3a1 100644 (file)
@@ -63,7 +63,7 @@ static void __attribute__ ((__noreturn__)) usage(int err)
        exit(err);
 }
 
-long strtol_octal_or_err(const char *str, const char *errmesg)
+static long strtol_octal_or_err(const char *str, const char *errmesg)
 {
        long num;
        char *end = NULL;