changeset 15046:d7fccb8cb8a8

[gaim-migrate @ 17829] this was causing segfaults on my laptop committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 27 Nov 2006 12:12:43 +0000
parents 7236b72de90b
children 9e904eb0c009
files libgaim/tests/tests.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libgaim/tests/tests.h	Mon Nov 27 03:58:00 2006 +0000
+++ b/libgaim/tests/tests.h	Mon Nov 27 12:12:43 2006 +0000
@@ -16,9 +16,9 @@
 }
 
 #define assert_string_equal_free(expected, actual) { \
-	gchar *a = actual; \
-	assert_string_equal(expected, a); \
-	g_free(a); \
+	gchar *b = actual; \
+	assert_string_equal(expected, b); \
+	g_free(b); \
 }