diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-10-30 04:58:00 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-10-30 04:58:00 +0100 |
| commit | 001786c8ec464b1ae3e6321acfd984227cb1bbee (patch) | |
| tree | 6c71dd227eb8a8c28cd529cb4cfc31879e845831 /convert_percent.c | |
| parent | d963161275bcb3af4097872ba033da3ff9255606 (diff) | |
| download | ft_printf-001786c8ec464b1ae3e6321acfd984227cb1bbee.tar.gz ft_printf-001786c8ec464b1ae3e6321acfd984227cb1bbee.tar.bz2 ft_printf-001786c8ec464b1ae3e6321acfd984227cb1bbee.zip | |
Added flags for x and X
Diffstat (limited to 'convert_percent.c')
| -rw-r--r-- | convert_percent.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/convert_percent.c b/convert_percent.c index 2b15340..4b28f8d 100644 --- a/convert_percent.c +++ b/convert_percent.c @@ -5,6 +5,7 @@ char *convert_percent(va_list ap, t_pformat *pformat) { char *str = ft_strdup("%"); + (void)ap; str = handle_padding(pformat, str); return (str); } |
