From: divverent Date: Sat, 7 Feb 2015 21:15:41 +0000 (+0000) Subject: Oops, fix a printf. X-Git-Tag: xonotic-v0.8.1~29^2~2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=98f79326b8c578512490f97951c369e585100ea9;p=xonotic%2Fdarkplaces.git Oops, fix a printf. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12158 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/fs.c b/fs.c index cd7a6fba..5b9c1497 100644 --- a/fs.c +++ b/fs.c @@ -2759,7 +2759,7 @@ fs_offset_t FS_Write (qfile_t* file, const void* data, size_t datasize) { if (lseek (file->handle, file->buff_ind - file->buff_len, SEEK_CUR) == -1) { - Con_Printf("WARNING: could not seek in %s.\n"); + Con_Printf("WARNING: could not seek in %s.\n", file->filename); } }