aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25
diff options
context:
space:
mode:
authormd52011-05-13 20:55:14 +0300
committermd52011-05-13 20:55:14 +0300
commitef96967285cd71e8554b3e9391b32347d5f8350f (patch)
tree4cbc92bde879be46b7b4840dc82cc25ab870acae /engines/sword25
parent854783ea93d89a28c0bf1617dfd89c84e30d6423 (diff)
downloadscummvm-rg350-ef96967285cd71e8554b3e9391b32347d5f8350f.tar.gz
scummvm-rg350-ef96967285cd71e8554b3e9391b32347d5f8350f.tar.bz2
scummvm-rg350-ef96967285cd71e8554b3e9391b32347d5f8350f.zip
SWORD25 (LUA): Whitespace fixes
Diffstat (limited to 'engines/sword25')
-rw-r--r--engines/sword25/util/lua/lvm.cpp4
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