From: Karel Zak Date: Mon, 16 Jul 2012 16:45:52 +0000 (+0200) Subject: raw: fix compiler warning [-Wmissing-prototypes] X-Git-Tag: v2.22-rc1~138 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=16bade897c7baa28d9daeaa306797c94042df912;p=thirdparty%2Futil-linux.git raw: fix compiler warning [-Wmissing-prototypes] Signed-off-by: Karel Zak --- diff --git a/disk-utils/raw.c b/disk-utils/raw.c index 1e7a6fbd7b..eb58e9644d 100644 --- a/disk-utils/raw.c +++ b/disk-utils/raw.c @@ -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;