diff options
| author | morefigs <morefigs@gmail.com> | 2016-03-07 09:08:02 +1100 |
|---|---|---|
| committer | morefigs <morefigs@gmail.com> | 2016-03-07 09:08:02 +1100 |
| commit | 301031879ae3177a9d0814bb01b20d3004b077fc (patch) | |
| tree | 734d50e8d4a6692092b1e0216f61d620ceb49456 | |
| parent | beace2339e35d8bf4f96a989367cdc9bb43b807b (diff) | |
| download | pymba-301031879ae3177a9d0814bb01b20d3004b077fc.tar.gz pymba-301031879ae3177a9d0814bb01b20d3004b077fc.zip | |
Changed listLength arg
Changed listLength arg from 0 to 999 to avoid error in Vimba 1.4.
| -rw-r--r-- | pymba/vimbaobject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pymba/vimbaobject.py b/pymba/vimbaobject.py index 964f811..6a9a165 100644 --- a/pymba/vimbaobject.py +++ b/pymba/vimbaobject.py @@ -74,7 +74,7 @@ class VimbaObject(object): # Vimba DLL will return an error code errorCode = VimbaDLL.featuresList(self._handle, byref(dummyFeatureInfo), - 0, + 999, byref(numFound), sizeof(dummyFeatureInfo)) if errorCode != 0: |
