Fix for "Invalid use of member 'stats' in static member function"
diff --git a/vncviewer/DesktopWindow.cxx b/vncviewer/DesktopWindow.cxx
index 1f0f55f..7941c68 100644
--- a/vncviewer/DesktopWindow.cxx
+++ b/vncviewer/DesktopWindow.cxx
@@ -1194,7 +1194,7 @@
 {
   DesktopWindow *self = (DesktopWindow*)data;
 
-  const size_t statsCount = sizeof(stats)/sizeof(stats[0]);
+  const size_t statsCount = sizeof(self->stats)/sizeof(self->stats[0]);
 
   unsigned frame, pixels, pos;
   unsigned elapsed;
@@ -1219,7 +1219,7 @@
   if (elapsed < 1)
     elapsed = 1;
 
-  memmove(&self->stats[0], &self->stats[1], sizeof(stats[0])*(statsCount-1));
+  memmove(&self->stats[0], &self->stats[1], sizeof(self->stats[0])*(statsCount-1));
 
   self->stats[statsCount-1].fps = (frame - self->statsLastFrame) * 1000 / elapsed;
   self->stats[statsCount-1].pps = (pixels - self->statsLastPixels) * 1000 / elapsed;