fix typo
This commit is contained in:
parent
bd9048595e
commit
628ccf948c
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
#include "../includes/plateau.h"
|
||||
|
||||
Table *generate_table(GLuint width, GLuint height, Pos origin, Uint32 color) {
|
||||
Table *table = malloc(sizeof(Table *));
|
||||
Table *table = malloc(sizeof(Table));
|
||||
assert(table != NULL);
|
||||
|
||||
table->width = width;
|
||||
|
|
Reference in a new issue