diff options
Diffstat (limited to 'shells/rc/patches')
-rw-r--r-- | shells/rc/patches/patch-ab | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/shells/rc/patches/patch-ab b/shells/rc/patches/patch-ab new file mode 100644 index 00000000000..ece255c152f --- /dev/null +++ b/shells/rc/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.3 2006/01/08 20:56:07 joerg Exp $ + +--- print.c.orig 2006-01-08 20:54:47.000000000 +0000 ++++ print.c +@@ -104,7 +104,7 @@ static void intconv(Format *format, unsi + if (flags & FMT_long) + n = va_arg(format->args, long); + else if (flags & FMT_short) +- n = va_arg(format->args, short); ++ n = va_arg(format->args, int); + else + n = va_arg(format->args, int); + |