aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_select_get.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_select_get.c')
-rw-r--r--src/ft_select_get.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ft_select_get.c b/src/ft_select_get.c
index 74cd000..188a6de 100644
--- a/src/ft_select_get.c
+++ b/src/ft_select_get.c
@@ -60,14 +60,13 @@ static int8_t
ret++;
if (ret == 8)
ret = 12;
- ret = ft_check_exists(ret, clist);
- return (ret);
+ return (ret = ft_check_exists(ret, clist));
}
-uint8_t
+int8_t
ft_select_get(char **words, t_cub *clist)
{
- int (*fun_ptr[8])(char**, t_cub*);
+ int8_t (*fun_ptr[8])(char**, t_cub*);
int8_t id;
fun_ptr[0] = ft_get_res;