support/Messages.cpp: add space to not be taken as user defined literal

In C++11 you are not allowed to have non-literal specifiers right
after a string literal.
This commit is contained in:
Lars Gullik Bjønnes 2012-10-24 03:04:06 +02:00
parent 28ebc59517
commit 54d1cb1880

View File

@ -119,7 +119,7 @@ bool Messages::available(string const & c)
// this loops at most twice
while (true) {
string const filen = locale_dir + "/" + code
+ "/LC_MESSAGES/"PACKAGE".mo";
+ "/LC_MESSAGES/" PACKAGE ".mo";
if (FileName(filen).isReadableFile())
return true;
if (contains(code, '_'))