diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-11-13 09:30:24 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-11-13 09:30:24 +0100 |
| commit | 80f5c6a1cef114cd5006431149506bb5d87403b6 (patch) | |
| tree | 8462dbd3c0421755b84892a69102ecaef2c94fea /printer.c | |
| parent | 3f2ef05278d42233f0a9ee9652e152824a7103e4 (diff) | |
| download | ft_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.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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); |
