update: fixed small errors

This commit is contained in:
Maieul BOYER 2024-10-13 17:42:54 +02:00
parent f5a8c2be04
commit d97efa87a7
No known key found for this signature in database
16 changed files with 59 additions and 140 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/07 18:01:52 by maiboyer #+# #+# */
/* Updated: 2024/10/12 17:52:39 by rparodi ### ########.fr */
/* Updated: 2024/10/13 17:35:46 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,6 +14,7 @@
#include "me/printf/_internal_printf.h"
#include "me/string/string.h"
#include "me/types.h"
#include <stdio.h>
void me_printf_append_string(t_const_str to_write, t_usize to_write_len,
void *p_args)
@ -31,6 +32,6 @@ void me_printf_write(t_const_str to_write, \
t_fprintf_arg *arg;
arg = (t_fprintf_arg *)p_args;
write_fd(arg->fd, (t_u8 *)to_write, to_write_len, NULL);
(write_fd(arg->fd, (t_u8 *)to_write, to_write_len, NULL));
arg->total_print += to_write_len;
}