tests/gdatetime: add a missing ; on windows

This commit is contained in:
Dan Winship 2013-01-06 18:56:39 -05:00
parent 1d0687aa81
commit b3ce0deb6d

View File

@ -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
}