From 17afe62335fbb9bb78db46e82e54a870cea4caa5 Mon Sep 17 00:00:00 2001 From: maroy Date: Thu, 25 Nov 2004 10:13:42 +0000 Subject: [PATCH] changes helix error code output to hex format --- livesupport/modules/playlistExecutor/src/ErrorSink.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/livesupport/modules/playlistExecutor/src/ErrorSink.cxx b/livesupport/modules/playlistExecutor/src/ErrorSink.cxx index 5faf79c2b..e6f096a85 100644 --- a/livesupport/modules/playlistExecutor/src/ErrorSink.cxx +++ b/livesupport/modules/playlistExecutor/src/ErrorSink.cxx @@ -22,7 +22,7 @@ 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 $ ------------------------------------------------------------------------------*/ @@ -149,7 +149,7 @@ ErrorSink::ErrorOccurred(const UINT8 unSeverity, // TODO: do something useful with the error event if (lastHelixErrorCode) { - std::cerr << "Helix error: " << ulHXCode << std::endl; + std::cerr << "Helix error: " << std::hex << ulHXCode << std::endl; } return HXR_OK;