medfall

A super great game engine
Log | Files | Refs

commit 7af60b23af2eae869cbf3ee702abed9ca962efce
parent 27a27f1264bfcb4d814b4df7e70219852143bca0
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun Apr 23 00:35:50 +0300

const

Diffstat:
launcher/main.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/launcher/main.cc b/launcher/main.cc @@ -352,7 +352,7 @@ static WORK_QUEUE_CALLBACK( download_manifest ) { manifest_str = body.c_str() + 129; size_t manifest_len = body.size() - 129; - int signature_ok = crypto_check( signature, PUBLIC_KEY, ( u8 * ) manifest_str, manifest_len ); + int signature_ok = crypto_check( signature, PUBLIC_KEY, ( const u8 * ) manifest_str, manifest_len ); if( signature_ok != 0 ) return; }