diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-24 16:18:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-24 16:18:00 +0000 |
commit | cff526fc610fe0166b59c25bcb7730b92b481480 (patch) | |
tree | e6a4d06f31ac5134d67fee3405f37ebab1a5054d /src/modules/langpack | |
parent | 2e9daaee6cdf51423daa89b1dbae37e1424d549f (diff) |
fix for the Sounds options
git-svn-id: http://svn.miranda-ng.org/main/trunk@604 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/langpack')
-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++;
}
|