remove void* to char* cast

This commit is contained in:
leca 2024-12-21 18:02:02 +03:00
parent 015f38f780
commit 8e458dd08e
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -43,7 +43,7 @@ Garland generate_garland(unsigned int length) {
}
strncpy(color+7, "#\0", 2);
g.lightbulbs[i] = (char*) malloc(9);
g.lightbulbs[i] = malloc(9);
strncpy(g.lightbulbs[i], color, 9);
free(color);
color = NULL;