[Libreoffice-commits] core.git: configmgr/source

Stephan Bergmann sbergman at redhat.com
Mon Sep 28 23:49:38 PDT 2015


 configmgr/source/dconf.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f68a27c787cfdafa51d0c045feb0452026640669
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Sep 29 08:49:09 2015 +0200

    Avoid false -Werror=maybe-uninitialized
    
    Change-Id: I5493c49eb97c630e91cdc8368ad8b017557f1fa1

diff --git a/configmgr/source/dconf.cxx b/configmgr/source/dconf.cxx
index ec286b2..192eb8b 100644
--- a/configmgr/source/dconf.cxx
+++ b/configmgr/source/dconf.cxx
@@ -872,7 +872,7 @@ void readDir(
                 continue;
             }
             switch (op) {
-            case Op::None:
+            default: // case Op::None:
                 SAL_WARN(
                     "configmgr.dconf",
                     "bad set element indirection dir " << path


More information about the Libreoffice-commits mailing list