# HG changeset patch # User Christian Kamm # Date 1225052304 -3600 # Node ID d63741d00ee39ba2ac6ec171f771dcb735ec82bf # Parent 09b88beffd2da3859ca13f710590979116697479 Fix broken indentation from last commit. diff -r 09b88beffd2d -r d63741d00ee3 runtime/internal/genobj.d --- a/runtime/internal/genobj.d Sun Oct 26 21:16:21 2008 +0100 +++ b/runtime/internal/genobj.d Sun Oct 26 21:18:24 2008 +0100 @@ -800,11 +800,11 @@ { if (!p2) c = 1; else if (xopCmp) - // the x86 D calling conv requires the this arg to be last here - version(X86) + // the x86 D calling conv requires the this arg to be last here + version(X86) c = (*xopCmp)(p2, p1); - else - c = (*xopCmp)(p1, p2); + else + c = (*xopCmp)(p1, p2); else // BUG: relies on the GC not moving objects c = memcmp(p1, p2, m_init.length);