From 14bbc90ddb7506add5cb0dbf4c66a1b86be956fc Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 26 Jun 2012 18:03:47 +0000 Subject: [PATCH] Mac: Fix compile error. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@714 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- libcef/common/main_delegate.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcef/common/main_delegate.cc b/libcef/common/main_delegate.cc index fe763f8cc..9f0f34852 100644 --- a/libcef/common/main_delegate.cc +++ b/libcef/common/main_delegate.cc @@ -213,6 +213,8 @@ bool CefMainDelegate::BasicStartupComplete(int* exit_code) { case LOGSEVERITY_DISABLE: log_severity = switches::kLogSeverity_Disable; break; + default: + break; } if (!log_severity.empty()) command_line->AppendSwitchASCII(switches::kLogSeverity, log_severity);