From: Pierre Ossman Date: Tue, 2 Oct 2012 14:30:22 +0000 (+0000) Subject: Fix bad indentation. X-Git-Tag: v1.2.90~85 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9d267c5ed542b3dea1291e461b861bb1940208d9;p=tigervnc.git Fix bad indentation. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5000 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/vncviewer/DesktopWindow.cxx b/vncviewer/DesktopWindow.cxx index f35457d7..37b94104 100644 --- a/vncviewer/DesktopWindow.cxx +++ b/vncviewer/DesktopWindow.cxx @@ -93,15 +93,15 @@ DesktopWindow::DesktopWindow(int w, int h, const char *name, matched = sscanf(geometry.getValueStr(), "%dx%d+%d+%d", &geom_w, &geom_h, &geom_x, &geom_y); switch (matched) { case 4: - force_position(1); - /* fall through */ + force_position(1); + /* fall through */ case 2: - w = geom_w; - h = geom_h; - break; + w = geom_w; + h = geom_h; + break; default: - geom_x = geom_y = 0; - vlog.error("Invalid geometry specified!"); + geom_x = geom_y = 0; + vlog.error("Invalid geometry specified!"); } } }