summaryrefslogtreecommitdiffstats
path: root/src/c_input.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_input.c')
-rw-r--r--src/c_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c_input.c b/src/c_input.c
index 1cc8814..19d2ef3 100644
--- a/src/c_input.c
+++ b/src/c_input.c
@@ -63,7 +63,7 @@ c_get_line_num(char *line,
line_num = 0;
tcaps->lpos = 1;
len = ft_strlen(line);
- if (len < (tcaps->ws.ws_col - plen))
+ if ((len) < (tcaps->ws.ws_col - plen))
return (1);
while (it < len)
{
@@ -109,6 +109,6 @@ int16_t
(void)tcaps;
(void)line;
msh->ret = 130;
- c_new_line(NULL, tcaps, msh);
+ c_new_line(NULL, tcaps);
return (1);
}