diff options
-rw-r--r-- | mtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ mt_table* mt_create() printf("Cannot allocate mem for mt_table\n"); return NULL; } - memset(mt,0,sizeof(mt)); + memset(mt,0,sizeof(mt_table)); mt->table = darr_create( sizeof(mt_range), 100 ); if (mt->table == NULL) |