summaryrefslogtreecommitdiffstats
path: root/libft
diff options
context:
space:
mode:
Diffstat (limited to 'libft')
-rw-r--r--libft/Makefile2
-rw-r--r--libft/src/ft_substr.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/libft/Makefile b/libft/Makefile
index 858e90b..85f063d 100644
--- a/libft/Makefile
+++ b/libft/Makefile
@@ -121,7 +121,7 @@ OS = $(shell uname)
#-------------------------------- Compiler ------------------------------------#
#==============================================================================#
ifeq (${OS}, Linux)
- CC = gcc
+ CC = clang
else
CC = clang
endif
diff --git a/libft/src/ft_substr.c b/libft/src/ft_substr.c
index 947a305..234ddc4 100644
--- a/libft/src/ft_substr.c
+++ b/libft/src/ft_substr.c
@@ -18,9 +18,7 @@ char
*ft_substr(const char *s, unsigned int start, size_t len)
{
char *nstr;
- size_t i;
- i = 0;
if (!(nstr = (char*)malloc((len + 1) * sizeof(char))))
return (NULL);
ft_strlcpy(nstr, s + start, len + 1);