diff options
author | deva <deva> | 2006-03-07 19:12:18 +0000 |
---|---|---|
committer | deva <deva> | 2006-03-07 19:12:18 +0000 |
commit | 4f84ffc811d93371f395f11a0e0f42000eaa99fc (patch) | |
tree | b562b6c55f2a825dbbc12646df9741b51e1dff79 /client/dv1394.cc | |
parent | 1390ddfe6afe41dba141f8170f9b277573ebe8cd (diff) |
*** empty log message ***
Diffstat (limited to 'client/dv1394.cc')
-rw-r--r-- | client/dv1394.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/dv1394.cc b/client/dv1394.cc index 611d815..ea32f7a 100644 --- a/client/dv1394.cc +++ b/client/dv1394.cc @@ -127,13 +127,13 @@ bool dv1394::connect() // Get handle to firewire channels handle = raw1394_new_handle(); if(!handle) { - gInfo::info->error("raw1394 - failed to get handle: %s.", strerror( errno ) ); + MIaV::info->error("raw1394 - failed to get handle: %s.", strerror( errno ) ); return false; } // how many adapters are hooked in? if((n_ports = raw1394_get_port_info(handle, pinf, 16)) < 0 ) { - gInfo::info->error("raw1394 - failed to get port info: %s.", strerror( errno ) ); + MIaV::info->error("raw1394 - failed to get port info: %s.", strerror( errno ) ); raw1394_destroy_handle(handle); handle = NULL; return false; @@ -141,7 +141,7 @@ bool dv1394::connect() // Tell raw1394 which host adapter to use if(raw1394_set_port(handle, port) < 0 ) { - gInfo::info->error("raw1394 - failed to set port: %s.", strerror( errno ) ); + MIaV::info->error("raw1394 - failed to set port: %s.", strerror( errno ) ); raw1394_destroy_handle(handle); handle = NULL; return false; |