Skip to content
Snippets Groups Projects
Commit 509e4603 authored by ERKEN EFE's avatar ERKEN EFE
Browse files

:wrench: UPDATE: Fix creer_level() error message

Made creer_level() error message more clear in file grid.c
parent 4dab645f
Branches
Tags
No related merge requests found
......@@ -36,7 +36,7 @@ grid *creer_level(int row, int column)
// on vérifie si l'allocation s'est bien passée
if (G == NULL)
{
fprintf(stderr, "Error G structure alloc failed");
fprintf(stderr, "Error game structure alloc failed");
exit(-1);
}
// on alloue la première dimension du tableau dynamique à deux dimensions dans la structure
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment