summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-02-26 22:30:18 +0100
committerwm4 <wm4@nowhere>2014-02-26 22:30:18 +0100
commit5eab4f43ec562e4ea37943b5360475a9d6d9c83d (patch)
tree294b84adc386670c3791e90592a99f8acc911fdd
parent11ee72fe1b4304ae16ff45c767c0d9e8f6e6f295 (diff)
downloadmpv-5eab4f43ec562e4ea37943b5360475a9d6d9c83d.tar.bz2
mpv-5eab4f43ec562e4ea37943b5360475a9d6d9c83d.tar.xz
m_option: make converting mpv_node to string always fail
-rw-r--r--options/m_option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/m_option.c b/options/m_option.c
index ac814102be..42d02bfc61 100644
--- a/options/m_option.c
+++ b/options/m_option.c
@@ -2849,7 +2849,7 @@ static int parse_node(struct mp_log *log, const m_option_t *opt,
static char *print_node(const m_option_t *opt, const void *val)
{
- return talloc_strdup(NULL, "unimplemented");
+ return NULL;
}
static void dup_node(void *ta_parent, struct mpv_node *node)