diff options
Diffstat (limited to 'src/ft_get_tex_nl.c')
-rw-r--r-- | src/ft_get_tex_nl.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ft_get_tex_nl.c b/src/ft_get_tex_nl.c index 10dba91..bb071f7 100644 --- a/src/ft_get_tex_nl.c +++ b/src/ft_get_tex_nl.c @@ -19,23 +19,23 @@ int8_t { if (!(*words) || !(*(words + 1)) || (*(words + 2))) { - ft_sprintf(clist.errmsg, "%s", FT_ERR_ARGS); + ft_sprintf(clist->errmsg, "%s", FT_ERR_ARGS); return (-1); } if (ft_check_ext(*(words + 1), ".xpm") < 0) { - ft_sprintf(clist.errmsg, "%s", FT_ERR_NOT_A_XPM); + ft_sprintf(clist->errmsg, "%s", FT_ERR_NOT_A_XPM); return (-1); } - ft_memdel((void**)&clist.mlist.nl_tex_path); - if (!(clist.mlist.nl_tex_path = ft_strdup(*(words + 1)))) + ft_memdel((void**)&clist->mlist.nl_tex_path); + if (!(clist->mlist.nl_tex_path = ft_strdup(*(words + 1)))) { - ft_sprintf(clist.errmsg, "%s", FT_ERR_ALLOCATE); + ft_sprintf(clist->errmsg, "%s", FT_ERR_ALLOCATE); return (-1); } - if (ft_check_not_found(clist.mlist.nl_tex_path) < 0) + if (ft_check_not_found(clist->mlist.nl_tex_path) < 0) { - ft_sprintf(clist.errmsg, FT_ERR_RD_NL_TEX); + ft_sprintf(clist->errmsg, FT_ERR_RD_NL_TEX); return (-1); } return (0); |