From b8cb706e8d9566425ca336e135e6f3ca93b6d467 Mon Sep 17 00:00:00 2001 From: dam Date: Sat, 11 May 2024 04:36:40 +0100 Subject: Fixed type on error message. --- ttt.jai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttt.jai b/ttt.jai index 3682bfd..6f165a8 100644 --- a/ttt.jai +++ b/ttt.jai @@ -568,7 +568,7 @@ load_database :: (db: *Database, path: string) -> success: bool #must { read_success := file_read(file, *file_signature, DB_FILE_SIGN_STR.count); if read_success == false log_error("Failed to read file signature."); if cast(string)file_signature != DB_FILE_SIGN_STR { - log_error("Invalid file signature while loading database.\n"); + log_error("Invalid file signature while loading database."); return false; } -- cgit v1.2.3