diff options
Diffstat (limited to 'src/s_com.c')
-rw-r--r-- | src/s_com.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/s_com.c b/src/s_com.c index 14dc4ef..2797847 100644 --- a/src/s_com.c +++ b/src/s_com.c @@ -30,10 +30,10 @@ #include "s_lredir.h" #include "s_struct.h" -static int8_t s_fill_com(char *words[], t_com **com) +static char s_fill_com(char *words[], t_com **com) { - uint64_t i; - uint64_t j; + unsigned long i; + unsigned long j; if (words[0] == NULL) return (0); |