Small whitespace fix

This commit is contained in:
sago007
2016-12-30 19:19:40 +01:00
parent 3a716d93b4
commit c7798a862b

View File

@@ -107,7 +107,7 @@ static void Sys_SetHomePaths( void ) {
*/ */
static qboolean Sys_IsSymbolic(const char* path) { static qboolean Sys_IsSymbolic(const char* path) {
struct stat buf; struct stat buf;
int errCode = lstat(path, &buf); int errCode = lstat(path, &buf);
return (errCode == 0); return (errCode == 0);
} }