From: Tim Janik Date: Mon, 13 Aug 2007 12:30:08 +0000 (+0000) Subject: fixed array size typo. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=e0dffd03fb023d518121e3c0829adcadf66f3c8e;p=dana%2Fcg-glib.git fixed array size typo. Mon Aug 13 14:30:15 2007 Tim Janik * tests/onceinit.c (main): fixed array size typo. svn path=/trunk/; revision=5699 --- diff --git a/ChangeLog b/ChangeLog index d0cc465f..09a55102 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Aug 13 14:30:15 2007 Tim Janik + + * tests/onceinit.c (main): fixed array size typo. + Mon Aug 13 14:21:44 2007 Tim Janik * tests/onceinit.c: test g_once_init_*() before and after diff --git a/tests/onceinit.c b/tests/onceinit.c index 0aee7597..218ab39e 100644 --- a/tests/onceinit.c +++ b/tests/onceinit.c @@ -110,7 +110,7 @@ int main (int argc, char *argv[]) { - GThread *threads[11]; + GThread *threads[N_THREADS]; int i; /* test simple initializer */ initializer1();