From 53cd1fe88bb766c753244de309497b2ecc4fc519 Mon Sep 17 00:00:00 2001 From: dfr Date: Thu, 19 Jan 1995 12:05:53 +0000 Subject: [PATCH] Fix handling of 'e' format floating point so that it prints trailing zeros correctly. --- lib/libc/stdio/vfprintf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 3610e108dd75..ebd772fa30c7 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -507,7 +507,6 @@ reswitch: switch (ch) { prec = (prec == -1) ? DEFPREC + 1 : prec + 1; /* FALLTHROUGH */ - goto fp_begin; case 'f': /* always print trailing zeroes */ if (prec != 0) flags |= ALT;