Browse Source

Fix bad indentation.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5000 3789f03b-4d11-0410-bbf8-ca57d06f2519
tags/v1.2.90
Pierre Ossman 11 years ago
parent
commit
9d267c5ed5
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      vncviewer/DesktopWindow.cxx

+ 7
- 7
vncviewer/DesktopWindow.cxx View File

@@ -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!");
}
}
}

Loading…
Cancel
Save