diff options
author | Denis Vlasenko | 2008-05-31 18:32:56 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-05-31 18:32:56 +0000 |
commit | a76669c5956842c5d2b5b6137a4cd9232112f6b2 (patch) | |
tree | 5fdc23003d8d5573736f7db55d7da787ee5dca92 | |
parent | f4e6bd0bf3c09f9672107ef1c45174c2ce13269a (diff) | |
download | busybox-a76669c5956842c5d2b5b6137a4cd9232112f6b2.zip busybox-a76669c5956842c5d2b5b6137a4cd9232112f6b2.tar.gz |
printf: fix a trivial bug
-rw-r--r-- | coreutils/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/printf.c b/coreutils/printf.c index cd18495..ebe9615 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c @@ -116,7 +116,7 @@ static void print_direc(char *format, unsigned fmt_length, saved = format[fmt_length]; format[fmt_length] = '\0'; - switch (p[fmt_length - 1]) { + switch (format[fmt_length - 1]) { case 'd': case 'i': if (field_width < 0) { |