(svn r4689) - Codechange: correct parameter order or calloc, and use the sizeof the variable rather than a struct

This commit is contained in:
peter1138 2006-05-02 14:34:53 +00:00
parent 143b8d1f67
commit 387ce97c28
1 changed files with 1 additions and 1 deletions

View File

@ -795,7 +795,7 @@ static void HandleString(char *str, bool master)
}
// Allocate a new LangString
ent = calloc(sizeof(LangString), 1);
ent = calloc(1, sizeof(*ent));
_strings[_next_string_id] = ent;
ent->index = _next_string_id++;
ent->name = strdup(str);