From 7c2cefc19025a54b6abd92bdda9f470a7c28eafe Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Tue, 7 Jun 2011 18:23:17 -0700 Subject: [PATCH] Silence warning --- src/NoteTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NoteTypes.h b/src/NoteTypes.h index 3d99c63252..cd00810e0a 100644 --- a/src/NoteTypes.h +++ b/src/NoteTypes.h @@ -164,7 +164,7 @@ struct TapNote { if (type_ > TapNote::fake ) { - LOG->Trace(ssprintf("Invalid tap note type %d (most likely) due to random vanish issues. Assume it doesn't need judging.", type_ ) ); + LOG->Trace("Invalid tap note type %d (most likely) due to random vanish issues. Assume it doesn't need judging.", (int)type_ ); type = TapNote::empty; } }