From 904bb8e2463a605c11759762753d36e12df078a9 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 19 Jun 2005 06:39:49 +0000 Subject: [PATCH] Fix warning. --- stepmania/src/CryptHelpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/CryptHelpers.cpp b/stepmania/src/CryptHelpers.cpp index d8e41b70b0..db17577129 100644 --- a/stepmania/src/CryptHelpers.cpp +++ b/stepmania/src/CryptHelpers.cpp @@ -246,7 +246,7 @@ bool CryptHelpers::VerifyFile( RageFileBasic &file, CString sSignature, CString if( sSignature.size() != pub.SignatureLength() ) { - sError = ssprintf( "Invalid signature length: got %i, expected %i", sSignature.size(), pub.SignatureLength() ); + sError = ssprintf( "Invalid signature length: got %i, expected %i", int(sSignature.size()), pub.SignatureLength() ); return false; }