diff options
author | md5 | 2011-05-13 20:55:14 +0300 |
---|---|---|
committer | md5 | 2011-05-13 20:55:14 +0300 |
commit | ef96967285cd71e8554b3e9391b32347d5f8350f (patch) | |
tree | 4cbc92bde879be46b7b4840dc82cc25ab870acae | |
parent | 854783ea93d89a28c0bf1617dfd89c84e30d6423 (diff) | |
download | scummvm-rg350-ef96967285cd71e8554b3e9391b32347d5f8350f.tar.gz scummvm-rg350-ef96967285cd71e8554b3e9391b32347d5f8350f.tar.bz2 scummvm-rg350-ef96967285cd71e8554b3e9391b32347d5f8350f.zip |
SWORD25 (LUA): Whitespace fixes
-rw-r--r-- | engines/sword25/util/lua/lvm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/util/lua/lvm.cpp b/engines/sword25/util/lua/lvm.cpp index 15013397ba..aee31064ff 100644 --- a/engines/sword25/util/lua/lvm.cpp +++ b/engines/sword25/util/lua/lvm.cpp @@ -203,10 +203,10 @@ static int l_strcmp (const TString *ls, const TString *rs) { size_t lr = rs->tsv.len; for (;;) { #if defined(__ANDROID__) - // Android is missing strcoll(). + // Android is missing strcoll(). // For more information, refer to: // http://www.damonkohler.com/2008/12/lua-on-android.html - int temp = strcmp(l, r); + int temp = strcmp(l, r); #else int temp = strcoll(l, r); #endif |