From c7798a862b59d6b39506990aad054af9d9f07a4f Mon Sep 17 00:00:00 2001 From: sago007 Date: Fri, 30 Dec 2016 19:19:40 +0100 Subject: [PATCH] Small whitespace fix --- code/sys/sys_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/sys/sys_unix.c b/code/sys/sys_unix.c index f306773d..d11ecf6a 100644 --- a/code/sys/sys_unix.c +++ b/code/sys/sys_unix.c @@ -107,7 +107,7 @@ static void Sys_SetHomePaths( void ) { */ static qboolean Sys_IsSymbolic(const char* path) { struct stat buf; - int errCode = lstat(path, &buf); + int errCode = lstat(path, &buf); return (errCode == 0); }