From da5b00c3dd919bbdecaf49caf3f32095a06067b4 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 21 Jun 2016 13:19:37 -0400 Subject: [PATCH] Fix unreferenced variable error --- libcef/browser/views/view_util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcef/browser/views/view_util.cc b/libcef/browser/views/view_util.cc index 0c222604d..8bd629413 100644 --- a/libcef/browser/views/view_util.cc +++ b/libcef/browser/views/view_util.cc @@ -200,7 +200,7 @@ display::Display GetDisplayMatchingBounds(const gfx::Rect& bounds, find_bounds); } #endif - return display::Screen::GetScreen()->GetDisplayMatching(bounds); + return display::Screen::GetScreen()->GetDisplayMatching(find_bounds); } void ConvertPointFromPixels(gfx::Point* point,