diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_get_sprite.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/ft_get_sprite.c b/src/ft_get_sprite.c index 806489f..c9546fb 100644 --- a/src/ft_get_sprite.c +++ b/src/ft_get_sprite.c @@ -44,25 +44,23 @@ int8_t { if (!(*words) || !words[1] || words[2]) { - ft_strlcpy(clist->errmsg, FT_ERR_ARGS, ft_strlen(FT_ERR_ARGS) + 1); + ft_sprintf(clist->errmsg, "%s", FT_ERR_ARGS); return (-1); } if (ft_check_ext(*(words + 1), ".xpm") < 0) { - ft_strlcpy(clist->errmsg, FT_ERR_NOT_A_XPM, - ft_strlen(FT_ERR_NOT_A_XPM) + 1); + ft_sprintf(clist->errmsg, "%s", FT_ERR_NOT_A_XPM); return (-1); } ft_memdel((void**)&clist->mlist->sprite_path); if (!(clist->mlist->sprite_path = ft_strdup(*(words + 1)))) { - ft_strlcpy(clist->errmsg, FT_ERR_ALLOCATE, - ft_strlen(FT_ERR_ALLOCATE) + 1); + ft_sprintf(clist->errmsg, "%s", FT_ERR_ALLOCATE); return (-1); } if (ft_check_not_found(clist->mlist->sprite_path) < 0) { - ft_strlcpy(clist->errmsg, FT_ERR_RD_SP, ft_strlen(FT_ERR_RD_SP) + 1); + ft_sprintf(clist->errmsg, "%s", FT_ERR_RD_SP); return (-1); } return (0); |