From 80f5c6a1cef114cd5006431149506bb5d87403b6 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 13 Nov 2019 09:30:24 +0100 Subject: Removed double, normed --- printer.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'printer.c') diff --git a/printer.c b/printer.c index f4f80a0..0eab18b 100644 --- a/printer.c +++ b/printer.c @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/28 23:19:24 by cacharle #+# #+# */ -/* Updated: 2019/11/09 01:00:20 by cacharle ### ########.fr */ +/* Updated: 2019/11/13 09:28:35 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -59,8 +59,6 @@ char *convert_specifier(va_list ap, t_pformat *pformat) return (convert_percent(ap, pformat)); if (pformat->specifier == 'n') return (convert_written(ap, pformat)); - if (pformat->specifier == 'f') - return (convert_double(ap, pformat)); else return (convert_none(ap, pformat)); return (NULL); -- cgit