diff options
| author | dam <dam@gudinoff> | 2024-05-11 04:36:40 +0100 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2024-05-11 04:36:40 +0100 |
| commit | b8cb706e8d9566425ca336e135e6f3ca93b6d467 (patch) | |
| tree | eff4d079cecc3361fe9a1cbddbcc2f61bec6e057 | |
| parent | 8b934ebb39e67f1a3c9940474f69d05102b836c6 (diff) | |
| download | task-time-tracker-b8cb706e8d9566425ca336e135e6f3ca93b6d467.tar.zst task-time-tracker-b8cb706e8d9566425ca336e135e6f3ca93b6d467.zip | |
Fixed type on error message.
| -rw-r--r-- | ttt.jai | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |
