aboutsummaryrefslogtreecommitdiff
path: root/printer.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-13 09:30:24 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-13 09:30:24 +0100
commit80f5c6a1cef114cd5006431149506bb5d87403b6 (patch)
tree8462dbd3c0421755b84892a69102ecaef2c94fea /printer.c
parent3f2ef05278d42233f0a9ee9652e152824a7103e4 (diff)
downloadft_printf-80f5c6a1cef114cd5006431149506bb5d87403b6.tar.gz
ft_printf-80f5c6a1cef114cd5006431149506bb5d87403b6.tar.bz2
ft_printf-80f5c6a1cef114cd5006431149506bb5d87403b6.zip
Removed double, normed
Diffstat (limited to 'printer.c')
-rw-r--r--printer.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/printer.c b/printer.c
index f4f80a0..0eab18b 100644
--- a/printer.c
+++ b/printer.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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);