changeset 17125:34a7860e0084

Braces around an if.
author Gabriel Schulhof <nix@go-nix.ca>
date Wed, 16 May 2007 20:01:00 +0000
parents 601594a64190
children b5935a854ccb c0dd45834fd9
files libpurple/core.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/core.c	Wed May 16 19:35:17 2007 +0000
+++ b/libpurple/core.c	Wed May 16 20:01:00 2007 +0000
@@ -302,8 +302,9 @@
 	if (reply) {
 		dbus_error_init(&dbus_error);
 		dbus_message_get_args(reply, &dbus_error, DBUS_TYPE_STRING, &remote_user_dir, DBUS_TYPE_INVALID);
-		if (remote_user_dir)
+		if (remote_user_dir) {
 			remote_user_dir = g_strdup(remote_user_dir);
+		}
 		dbus_error_free(&dbus_error);
 		dbus_message_unref(reply);
 	}