[Scummvm-cvs-logs] scummvm master -> ef96967285cd71e8554b3e9391b32347d5f8350f

bluegr md5 at scummvm.org
Fri May 13 19:57:44 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ef96967285 SWORD25 (LUA): Whitespace fixes


Commit: ef96967285cd71e8554b3e9391b32347d5f8350f
    https://github.com/scummvm/scummvm/commit/ef96967285cd71e8554b3e9391b32347d5f8350f
Author: md5 (md5 at scummvm.org)
Date: 2011-05-13T10:55:14-07:00

Commit Message:
SWORD25 (LUA): Whitespace fixes

Changed paths:
    engines/sword25/util/lua/lvm.cpp



diff --git a/engines/sword25/util/lua/lvm.cpp b/engines/sword25/util/lua/lvm.cpp
index 1501339..aee3106 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






More information about the Scummvm-git-logs mailing list