[seahorse] Fix formatting of g_strsplit to add space before parens



commit 8f63c6bab966e3af8512264991f2f9388895a33d
Author: Adam Schreiber <sadam gnome org>
Date:   Sun Feb 7 16:06:29 2010 -0500

    Fix formatting of g_strsplit to add space before parens

 libseahorse/seahorse-util.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libseahorse/seahorse-util.c b/libseahorse/seahorse-util.c
index b5c7a78..87ee56f 100644
--- a/libseahorse/seahorse-util.c
+++ b/libseahorse/seahorse-util.c
@@ -1615,7 +1615,7 @@ seahorse_util_parse_version (const char *version)
 {
 	SeahorseVersion ret = 0, tmp = 0;
 	int offset = 48;
-	gchar **tokens = g_strsplit(version, ".", 5);
+	gchar **tokens = g_strsplit (version, ".", 5);
 	int i;
 	for (i=0; tokens[i] && offset >= 0; i++) {
 		tmp = atoi(tokens[i]);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]