aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2012-10-02 14:30:22 +0000
committerPierre Ossman <ossman@cendio.se>2012-10-02 14:30:22 +0000
commit9d267c5ed542b3dea1291e461b861bb1940208d9 (patch)
tree9ea3fafab8a6dd1c8ea8e205d702bc1690b891a2 /vncviewer
parentb808ffd29489ddb44d50d3972230c7a5b3a8330c (diff)
downloadtigervnc-9d267c5ed542b3dea1291e461b861bb1940208d9.tar.gz
tigervnc-9d267c5ed542b3dea1291e461b861bb1940208d9.zip
Fix bad indentation.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5000 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer')
-rw-r--r--vncviewer/DesktopWindow.cxx14
1 files changed, 7 insertions, 7 deletions
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!");
}
}
}