We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57f4d22 commit 4e15041Copy full SHA for 4e15041
0x1A-hash_tables/0-hash_table_create.c
@@ -9,7 +9,7 @@
9
*/
10
hash_table_t *hash_table_create(unsigned long int size)
11
{
12
- hash_table_t *hash_table = malloc(sizeof(hash_node_t));
+ hash_table_t *hash_table = malloc(sizeof(hash_table_t));
13
unsigned int index;
14
15
if (hash_table == NULL)
0 commit comments