Commit 4ea6b96b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

libvlc: provide file name and line number

parent c8d5ba62
...@@ -42,9 +42,9 @@ void libvlc_log_get_context(const libvlc_log_t *ctx, ...@@ -42,9 +42,9 @@ void libvlc_log_get_context(const libvlc_log_t *ctx,
if (module != NULL) if (module != NULL)
*module = ctx->psz_module; *module = ctx->psz_module;
if (file != NULL) if (file != NULL)
*file = NULL; *file = ctx->file;
if (line != NULL) if (line != NULL)
*line = 0; *line = ctx->line;
} }
void libvlc_log_get_object(const libvlc_log_t *ctx, void libvlc_log_get_object(const libvlc_log_t *ctx,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment