msg: fix typo in comment

This commit is contained in:
wm4 2014-01-16 21:26:24 +01:00
parent 99ee43b33b
commit 49eb3c4025
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ bool mp_msg_test(struct mp_log *log, int lev);
#define mp_trace(log, ...) mp_msg(log, MSGL_TRACE, __VA_ARGS__)
// Convenience macros, typically called with a pointer to a context struct
// as first argument, which has a "struct mp_log log;" member.
// as first argument, which has a "struct mp_log *log;" member.
#define MP_MSG(obj, lev, ...) mp_msg((obj)->log, lev, __VA_ARGS__)