Fix initialization order (found by -Wall)
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 16 Sep 2010 08:25:53 +0000 (10:25 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 16 Sep 2010 08:25:53 +0000 (10:25 +0200)
ftdipp/ftdi.cpp

index 03dd26b..c81eb5f 100644 (file)
@@ -36,7 +36,7 @@ class Context::Private
 {
 public:
     Private()
-            :  ftdi(0), dev(0), open(false)
+            : open(false), ftdi(0), dev(0)
     {
         ftdi = ftdi_new();
     }