aboutsummaryrefslogtreecommitdiff
path: root/src/lst/ft_lstlfind.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lst/ft_lstlfind.c')
-rw-r--r--src/lst/ft_lstlfind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lst/ft_lstlfind.c b/src/lst/ft_lstlfind.c
index c399b6e..fd7e688 100644
--- a/src/lst/ft_lstlfind.c
+++ b/src/lst/ft_lstlfind.c
@@ -16,7 +16,7 @@ t_ftlst *ft_lstlfind(t_ftlst *lst, t_ftcompar_func cmp, const void *ref)
{
if (lst == NULL)
return (NULL);
- if (cmp(ref, lst->content) == 0)
+ if (cmp(ref, lst->data) == 0)
return (lst);
return (ft_lstlfind(lst->next, cmp, ref));
}