]> source.dussan.org Git - tigervnc.git/commitdiff
Forgot to initialise the iterator index properly.
authorPierre Ossman <ossman@cendio.se>
Wed, 18 Jul 2012 14:27:37 +0000 (14:27 +0000)
committerPierre Ossman <ossman@cendio.se>
Wed, 18 Jul 2012 14:27:37 +0000 (14:27 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4938 3789f03b-4d11-0410-bbf8-ca57d06f2519

unix/xserver/hw/vnc/XserverDesktop.cc

index 2e14bcfcf8231e7af6646e29313b2b4e1fbe2c38..8606dccee8fc9d30d7548d32e0864ae2b57126a8 100644 (file)
@@ -296,7 +296,7 @@ RRModePtr XserverDesktop::findRandRMode(RROutputPtr output, int width, int heigh
 {
   RRModePtr mode;
 
-  for (int i;i < output->numModes;i++) {
+  for (int i = 0;i < output->numModes;i++) {
     if ((output->modes[i]->mode.width == width) &&
         (output->modes[i]->mode.height == height))
       return output->modes[i];