From b7a12b3d5941c9e72f45b2e5f819208ddbe2fcd7 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Sun, 2 Jul 2017 16:39:41 -0700 Subject: [PATCH] gl plugin: fix per new warning. --- src/gl/gl-adapter.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gl/gl-adapter.c b/src/gl/gl-adapter.c index ebcc95b65..1fed659f6 100644 --- a/src/gl/gl-adapter.c +++ b/src/gl/gl-adapter.c @@ -129,6 +129,8 @@ gdk_visual_get_visual_class (GdkVisual *v) return (TrueColor); case GDK_VISUAL_DIRECT_COLOR: return (DirectColor); + default: + return (-1); } } -- 2.25.1