diff options
-rw-r--r-- | strbst.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ int max(int a, int b) { typedef char height; strbst* newbst(void) { - return calloc(sizeof(strbst),1); + return calloc(1,sizeof(strbst)); } static strbstnode* newbstnode(char* ind, void* data) { |