From 19eeb328fde62d6fc2f8e02a799811615bf0c791 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 5 Oct 2004 21:59:00 +0000 Subject: [PATCH] fix output --- stepmania/src/archutils/Win32/RegistryAccess.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/archutils/Win32/RegistryAccess.cpp b/stepmania/src/archutils/Win32/RegistryAccess.cpp index 260d344c14..bc0c59d101 100644 --- a/stepmania/src/archutils/Win32/RegistryAccess.cpp +++ b/stepmania/src/archutils/Win32/RegistryAccess.cpp @@ -45,7 +45,7 @@ static HKEY OpenRegKey( const CString &key ) LONG retval = RegOpenKeyEx( type, subkey, 0, KEY_READ, &retkey ); if ( retval != ERROR_SUCCESS ) { - LOG->Warn( werr_ssprintf(retval, "RegOpenKeyEx(%i,%s) error", type, subkey.c_str()) ); + LOG->Warn( werr_ssprintf(retval, "RegOpenKeyEx(%x,%s) error", type, subkey.c_str()) ); return NULL; }