/pidgin/main: ddb6a095d2e5: Whitespace fixes

Richard Laager rlaager at pidgin.im
Sun Jan 13 17:02:38 EST 2013


Changeset: ddb6a095d2e56bee2d450f3ff0c97360af59f4aa
Author:	 Richard Laager <rlaager at pidgin.im>
Date:	 2013-01-13 13:55 -0600
Branch:	 release-2.x.y
URL: http://hg.pidgin.im/pidgin/main/rev/ddb6a095d2e5

Description:

Whitespace fixes

diffstat:

 libpurple/log.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (39 lines):

diff --git a/libpurple/log.c b/libpurple/log.c
--- a/libpurple/log.c
+++ b/libpurple/log.c
@@ -1763,7 +1763,7 @@ static GList *old_logger_list(PurpleLogT
 	index_tmp = g_strdup_printf("%s.XXXXXX", pathstr);
 	if ((index_fd = g_mkstemp(index_tmp)) == -1) {
 		purple_debug_error("log", "Failed to open index temp file: %s\n",
-		                 g_strerror(errno));
+		                   g_strerror(errno));
 		g_free(pathstr);
 		g_free(index_tmp);
 		index = NULL;
@@ -1771,7 +1771,7 @@ static GList *old_logger_list(PurpleLogT
 		if ((index = fdopen(index_fd, "wb")) == NULL)
 		{
 			purple_debug_error("log", "Failed to fdopen() index temp file: %s\n",
-			                 g_strerror(errno));
+			                   g_strerror(errno));
 			close(index_fd);
 			if (index_tmp != NULL)
 			{
@@ -2022,7 +2022,7 @@ static void old_logger_get_log_sets(Purp
 		/* Search the buddy list to find the account and to determine if this is a buddy. */
 		for (gnode = purple_blist_get_root();
 		     !found && gnode != NULL;
-			 gnode = purple_blist_node_get_sibling_next(gnode))
+		     gnode = purple_blist_node_get_sibling_next(gnode))
 		{
 			if (!PURPLE_BLIST_NODE_IS_GROUP(gnode))
 				continue;
@@ -2036,7 +2036,7 @@ static void old_logger_get_log_sets(Purp
 
 				for (bnode = purple_blist_node_get_first_child(cnode);
 				     !found && bnode != NULL;
-					 bnode = purple_blist_node_get_sibling_next(bnode))
+				     bnode = purple_blist_node_get_sibling_next(bnode))
 				{
 					PurpleBuddy *buddy = (PurpleBuddy *)bnode;
 



More information about the Commits mailing list