diff options
Diffstat (limited to 'src/modules/langpack/langpack.cpp')
-rw-r--r-- | src/modules/langpack/langpack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/langpack/langpack.cpp b/src/modules/langpack/langpack.cpp index efa7e5da9b..ecc503f19f 100644 --- a/src/modules/langpack/langpack.cpp +++ b/src/modules/langpack/langpack.cpp @@ -71,7 +71,7 @@ static int IsEmpty(char *str) while (str[i])
{
- if (str[i] != ' '&&str[i] != '\r'&&str[i] != '\n')
+ if (str[i] != ' ' && str[i] != '\r' && str[i] != '\n')
return 0;
i++;
}
|