diff options
author | Johannes Schickel | 2010-06-15 17:56:05 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-06-15 17:56:05 +0000 |
commit | a42ea73a768f52105ef3ac36041db0c5c14ec113 (patch) | |
tree | 30a9102682a63d45a79a00ca9b142be8c5520c3c /common | |
parent | 212d0ac28c3b10c57ffefb16af998f58fa5e294c (diff) | |
download | scummvm-rg350-a42ea73a768f52105ef3ac36041db0c5c14ec113.tar.gz scummvm-rg350-a42ea73a768f52105ef3ac36041db0c5c14ec113.tar.bz2 scummvm-rg350-a42ea73a768f52105ef3ac36041db0c5c14ec113.zip |
Simplify code for the "ICONV_USES_CONST" case even more. (i.e. remove the "msg" variable there).
svn-id: r49880
Diffstat (limited to 'common')
-rw-r--r-- | common/translation.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/translation.cpp b/common/translation.cpp index 60ae4c2257..791958b911 100644 --- a/common/translation.cpp +++ b/common/translation.cpp @@ -130,8 +130,7 @@ bool TranslationManager::convert(const char *message) { // Preparing conversion origin size_t len = strlen(message); #ifdef ICONV_USES_CONST - const char *msg = message; - const char **pmsg = &msg; + const char **pmsg = &message; #else char *msgcpy = new char[len + 1]; strcpy(msgcpy, message); |