summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--video/out/gl_common.c2
1 files changed, 1 insertions, 1 deletions
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);