medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 1c0203e0cd1f997fcf1238ee5b759926a1a980a3
parent ac4d0bfc6e483539f474b26bcaa5dc6abbc978a8
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat Dec  3 16:08:41 +0200

%s needs char *

Diffstat:
launcher/main.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/launcher/main.cc b/launcher/main.cc @@ -188,7 +188,7 @@ int main() { bool has_local_version = parse_version( &local_version, local_version_str ); // TODO: if getting remote version fails wait 30s and try again if( !parse_version( &remote_version, remote_version_str.c_str() ) ) { - FATAL( "can't parse version: %s", remote_version_str ); + FATAL( "can't parse version: %s", remote_version_str.c_str() ); } printf( "local %u.%u.%u.%u remote %u.%u.%u.%u\n",