aboutsummaryrefslogtreecommitdiffstats
path: root/src/env.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/env.c')
-rw-r--r--src/env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/env.c b/src/env.c
index 65e867a1..8f0b4632 100644
--- a/src/env.c
+++ b/src/env.c
@@ -247,7 +247,7 @@ serd_env_expand_node(const SerdEnv* env,
const size_t len = prefix.len + suffix.len; // FIXME: UTF-8?
SerdNode ret = { NULL, len, len, 0, SERD_URI };
ret.buf = (uint8_t*)malloc(ret.n_bytes + 1);
- _snprintf((char*)ret.buf, ret.n_bytes + 1,
+ snprintf((char*)ret.buf, ret.n_bytes + 1,
"%s%s", prefix.buf, suffix.buf);
return ret;
}