From 4713fa4f79460c90d7e502af1109347c4653a91d Mon Sep 17 00:00:00 2001 From: Zachary Slater Date: Tue, 17 Jun 2008 04:44:36 +0000 Subject: [PATCH] Thanks to Lakitu7 for pointing this out. --- code/qcommon/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/files.c b/code/qcommon/files.c index dcdb7bc5..64fe8d57 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -381,7 +381,7 @@ static fileHandle_t FS_HandleForFile(void) { static FILE *FS_FileForHandle( fileHandle_t f ) { if ( f < 0 || f > MAX_FILE_HANDLES ) { - Com_Error( ERR_DROP, "FS_FileForHandle: out of reange" ); + Com_Error( ERR_DROP, "FS_FileForHandle: out of range" ); } if (fsh[f].zipFile == qtrue) { Com_Error( ERR_DROP, "FS_FileForHandle: can't get FILE on zip file" );