DanielVanNoord / open-phd-guiding

Automatically exported from code.google.com/p/open-phd-guiding
0 stars 0 forks source link

Coding error in cam_firewire_OSX.cpp #293

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
[ben@zen open-phd-guiding-read-only]$ svn diff cam_firewire_OSX.cpp 
Index: cam_firewire_OSX.cpp
===================================================================
--- cam_firewire_OSX.cpp    (revision 868)
+++ cam_firewire_OSX.cpp    (working copy)
@@ -65,7 +65,7 @@

     err = dc1394_find_cameras(&cameras, &NCams);

-    if ((err!=DC1394_SUCCESS) && (err =! DC1394_NO_CAMERA)) {
+    if ((err!=DC1394_SUCCESS) && (err != DC1394_NO_CAMERA)) {
         wxMessageBox(_T("Error looking for Firewire / IEEE1394 cameras"));
         return true;
     }

Original issue reported on code.google.com by bgils...@gmail.com on 31 May 2014 at 1:09

GoogleCodeExporter commented 9 years ago
Thanks, Committed revision 869.

I wonder how this ever compiled (not that the OSX buildbot at 
http://gcc10.fsffrance.org:8011/waterfall is ready for it yet, but still.)

Original comment by h...@dse.nl on 31 May 2014 at 10:48