summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-01-16 21:26:24 +0100
committerwm4 <wm4@nowhere>2014-01-16 23:06:40 +0100
commit49eb3c4025bbb225620f58d69f6d9365910b25c6 (patch)
tree7373e3e0809c27f2b7682e85cc347866e83d5433 /common
parent99ee43b33bec75bb43b4c02060776a67246bacca (diff)
downloadmpv-49eb3c4025bbb225620f58d69f6d9365910b25c6.tar.bz2
mpv-49eb3c4025bbb225620f58d69f6d9365910b25c6.tar.xz
msg: fix typo in comment
Diffstat (limited to 'common')
-rw-r--r--common/msg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/msg.h b/common/msg.h
index 0ca449cb49..386151a768 100644
--- a/common/msg.h
+++ b/common/msg.h
@@ -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__)