COMMON: Fix warning

This commit is contained in:
Eugene Sandulenko 2011-11-02 22:08:56 +00:00
parent 884ee96708
commit 022857a371

View File

@ -390,7 +390,7 @@ bool TranslationManager::checkHeader(File &in) {
buf[12] = '\0';
// Check header
if (strcmp(buf, "TRANSLATIONS")) {
if (strcmp(buf, "TRANSLATIONS") != 0) {
warning("File '%s' is not a valid translations data file. Skipping this file", in.getName());
return false;
}