diff options
author | David Robillard <d@drobilla.net> | 2018-09-30 17:20:21 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-30 17:20:21 +0200 |
commit | f0bc2210cdcbb0d641e3a723ca23409afe615535 (patch) | |
tree | 98ac3edb553ef013096d204f633089a2e7af7744 /src/env.c | |
parent | a5b040e33d00a8d6eab1ba8167f5ccaecbbfbc75 (diff) | |
download | serd-f0bc2210cdcbb0d641e3a723ca23409afe615535.tar.gz serd-f0bc2210cdcbb0d641e3a723ca23409afe615535.tar.bz2 serd-f0bc2210cdcbb0d641e3a723ca23409afe615535.zip |
Fix calloc argument order
Diffstat (limited to 'src/env.c')
-rw-r--r-- | src/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ struct SerdEnvImpl { SerdEnv* serd_env_new(const SerdNode* base_uri) { - SerdEnv* env = (SerdEnv*)calloc(sizeof(struct SerdEnvImpl), 1); + SerdEnv* env = (SerdEnv*)calloc(1, sizeof(struct SerdEnvImpl)); if (env && base_uri) { serd_env_set_base_uri(env, base_uri); } |