diff options
Diffstat (limited to '')
-rw-r--r-- | src/b_export_mute.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/b_export_mute.c b/src/b_export_mute.c index 414db95..2b78d27 100644 --- a/src/b_export_mute.c +++ b/src/b_export_mute.c @@ -12,7 +12,6 @@ #include <libft.h> #include <stdlib.h> -#include <stdint.h> #include "b_export.h" #include "b_export_next.h" @@ -46,10 +45,10 @@ static void b_classic_export_mute(char *ptr[], t_msh *msh) } } -uint8_t b_export_mute(char *args[], t_msh *msh) +unsigned char b_export_mute(char *args[], t_msh *msh) { char **ptr; - uint8_t r; + unsigned char r; if (args[0] == NULL) return (0); |