From b3ce0deb6d81bad318fee2f15e73cc4df20d945f Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Sun, 6 Jan 2013 18:56:39 -0500 Subject: [PATCH] tests/gdatetime: add a missing ; on windows --- glib/tests/gdatetime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c index 66c04323c..4f82929e3 100644 --- a/glib/tests/gdatetime.c +++ b/glib/tests/gdatetime.c @@ -891,7 +891,7 @@ GDateTime *__dt = g_date_time_new_local (2009, 10, 24, 0, 0, 0);\ #ifdef G_OS_UNIX TEST_PRINTF ("%Z", dst); #elif defined G_OS_WIN32 - TEST_PRINTF ("%Z", "Pacific Standard Time") + TEST_PRINTF ("%Z", "Pacific Standard Time"); #endif }