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