changes helix error code output to hex format
This commit is contained in:
parent
952021633d
commit
17afe62335
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: maroy $
|
Author : $Author: maroy $
|
||||||
Version : $Revision: 1.2 $
|
Version : $Revision: 1.3 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/Attic/ErrorSink.cxx,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/playlistExecutor/src/Attic/ErrorSink.cxx,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
@ -149,7 +149,7 @@ ErrorSink::ErrorOccurred(const UINT8 unSeverity,
|
||||||
|
|
||||||
// TODO: do something useful with the error event
|
// TODO: do something useful with the error event
|
||||||
if (lastHelixErrorCode) {
|
if (lastHelixErrorCode) {
|
||||||
std::cerr << "Helix error: " << ulHXCode << std::endl;
|
std::cerr << "Helix error: " << std::hex << ulHXCode << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
return HXR_OK;
|
return HXR_OK;
|
||||||
|
|
Loading…
Reference in New Issue