summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_putnbr_fd.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libft/src/ft_putnbr_fd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libft/src/ft_putnbr_fd.c b/libft/src/ft_putnbr_fd.c
index 437a6e6..0fad8e8 100644
--- a/libft/src/ft_putnbr_fd.c
+++ b/libft/src/ft_putnbr_fd.c
@@ -12,8 +12,7 @@
#include <libft.h>
-void
- ft_putnbr_fd(int n, int fd)
+void ft_putnbr_fd(int n, int fd)
{
unsigned int i;
@@ -29,5 +28,7 @@ void
ft_putchar_fd((i % 10) + 48, fd);
}
else
+ {
ft_putchar_fd(i + 48, fd);
+ }
}