summaryrefslogtreecommitdiff
path: root/strgen/strgen.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-05-02 14:34:53 +0000
committerpeter1138 <peter1138@openttd.org>2006-05-02 14:34:53 +0000
commit5f3b7b10a37e36c3de078829050731dbe0223363 (patch)
tree4f910e32ec037c65478a15a3d38b51ebfd789728 /strgen/strgen.c
parente6abf41768a50ebbfeb676beb40e987c38bdaa27 (diff)
downloadopenttd-5f3b7b10a37e36c3de078829050731dbe0223363.tar.xz
(svn r4689) - Codechange: correct parameter order or calloc, and use the sizeof the variable rather than a struct
Diffstat (limited to 'strgen/strgen.c')
-rw-r--r--strgen/strgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strgen/strgen.c b/strgen/strgen.c
index 58400a3f9..f37121108 100644
--- a/strgen/strgen.c
+++ b/strgen/strgen.c
@@ -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);