[Goodies-commits] r3597 - ristretto/trunk/src

Stephan Arts stephan at xfce.org
Sat Nov 17 14:19:46 CET 2007


Author: stephan
Date: 2007-11-17 13:19:45 +0000 (Sat, 17 Nov 2007)
New Revision: 3597

Modified:
   ristretto/trunk/src/main.c
Log:
Fix funky indent



Modified: ristretto/trunk/src/main.c
===================================================================
--- ristretto/trunk/src/main.c	2007-11-17 13:18:58 UTC (rev 3596)
+++ ristretto/trunk/src/main.c	2007-11-17 13:19:45 UTC (rev 3597)
@@ -43,17 +43,17 @@
 
 static GOptionEntry entries[] =
 {
-    {	"version", 'v', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &version,
-		N_("Version information"),
-		NULL
-	},
-	{ NULL }
+    {    "version", 'v', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &version,
+        N_("Version information"),
+        NULL
+    },
+    { NULL }
 };
 
 int main(int argc, char **argv)
 {
 
-	GError *cli_error = NULL;
+    GError *cli_error = NULL;
     gchar *path_dir = NULL;
     gint n;
 
@@ -67,17 +67,17 @@
     {
         if (cli_error != NULL)
         {
-			g_print (_("%s: %s\nTry %s --help to see a full list of available command line options.\n"), PACKAGE, cli_error->message, PACKAGE_NAME);
-			g_error_free (cli_error);
-			return 1;
+            g_print (_("%s: %s\nTry %s --help to see a full list of available command line options.\n"), PACKAGE, cli_error->message, PACKAGE_NAME);
+            g_error_free (cli_error);
+            return 1;
         }
     }
 
-	if(version)
-	{
-		g_print("%s\n", PACKAGE_STRING);
-		return 0;
-	}
+    if(version)
+    {
+        g_print("%s\n", PACKAGE_STRING);
+        return 0;
+    }
 
     thunar_vfs_init();
 




More information about the Goodies-commits mailing list