summaryrefslogtreecommitdiffstats
path: root/src/p_split.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/p_split.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/p_split.c b/src/p_split.c
index a8f4b5d..a1135ba 100644
--- a/src/p_split.c
+++ b/src/p_split.c
@@ -89,9 +89,9 @@ static void *p_del_split(char *words[], size_t todel)
static char **p_get_words(const char line[], const t_split_block *sp)
{
char **words;
- int64_t i;
+ long i;
size_t oldpos;
- int8_t oldif;
+ char oldif;
if ((words = (char**)malloc((sp->count + 1) * sizeof(char*))) == NULL)
return (NULL);