diff mercurial/osutil.c @ 13736:f3c4421e121c

osutil: fix up check-code issues
author Matt Mackall <mpm@selenic.com>
date Wed, 23 Mar 2011 09:41:58 -0500
parents 16118b4859a1
children 26f8844d1757
line wrap: on
line diff
--- a/mercurial/osutil.c	Wed Mar 23 09:34:22 2011 -0500
+++ b/mercurial/osutil.c	Wed Mar 23 09:41:58 2011 -0500
@@ -519,14 +519,14 @@
 
 static PyObject *isgui(PyObject *self)
 {
-    CFDictionaryRef dict = CGSessionCopyCurrentDictionary();
+	CFDictionaryRef dict = CGSessionCopyCurrentDictionary();
 
-    if (dict != NULL) {
-        CFRelease(dict);
-        return Py_True;
-    } else {
-        return Py_False;
-    }
+	if (dict != NULL) {
+		CFRelease(dict);
+		return Py_True;
+	} else {
+		return Py_False;
+	}
 }
 #endif
 
@@ -541,10 +541,10 @@
 "On error, this function may raise either a WindowsError or an IOError."},
 #endif
 #ifdef __APPLE__
-    {
-        "isgui", (PyCFunction)isgui, METH_NOARGS,
-        "Is a CoreGraphics session available?"
-    },
+	{
+		"isgui", (PyCFunction)isgui, METH_NOARGS,
+		"Is a CoreGraphics session available?"
+	},
 #endif
 	{NULL, NULL}
 };