diff options
author | David Robillard <d@drobilla.net> | 2018-11-29 21:08:25 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-11-29 21:08:25 +0100 |
commit | 7d663f4cd217b91809c6b279873520192383b614 (patch) | |
tree | e612e9344dc8adabbe414201316689ec7c503c0b /src/world.c | |
parent | af475a0c5ee0f61c3046caa0d9b563c07a14d995 (diff) | |
download | serd-7d663f4cd217b91809c6b279873520192383b614.tar.gz serd-7d663f4cd217b91809c6b279873520192383b614.tar.bz2 serd-7d663f4cd217b91809c6b279873520192383b614.zip |
WIP: Use SerdWorld log in validator
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c index 01a86dc5..3140066e 100644 --- a/src/world.c +++ b/src/world.c @@ -74,7 +74,7 @@ serd_world_errorf(const SerdWorld* world, SerdStatus st, const char* fmt, ...) { va_list args; va_start(args, fmt); - const SerdMessage msg = { st, NULL, fmt, &args }; + const SerdMessage msg = { st, SERD_LOG_LEVEL_ERROR, NULL, fmt, &args }; serd_world_error(world, &msg); va_end(args); return st; |