From f7eea070f0f9347664839638396ad96dbb243832 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 24 Aug 2014 19:14:36 +0200 Subject: vo_opengl: don't cut off feature list output --- video/out/gl_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video') diff --git a/video/out/gl_common.c b/video/out/gl_common.c index 1f1f02d4a3..d6f3708b01 100644 --- a/video/out/gl_common.c +++ b/video/out/gl_common.c @@ -121,7 +121,7 @@ static const struct feature features[] = { static void list_features(int set, struct mp_log *log, int msgl, bool invert) { - char b[128] = {0}; + char b[1024] = {0}; for (const struct feature *f = &features[0]; f->id; f++) { if (invert == !(f->id & set)) mp_snprintf_cat(b, sizeof(b), " [%s]", f->name); -- cgit v1.2.3