fixed array size typo.

Mon Aug 13 14:30:15 2007  Tim Janik  <timj@imendio.com>

        * tests/onceinit.c (main): fixed array size typo.



svn path=/trunk/; revision=5699
This commit is contained in:
Tim Janik 2007-08-13 12:30:08 +00:00 committed by Tim Janik
parent 1ce6d47e3a
commit e0dffd03fb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Aug 13 14:30:15 2007 Tim Janik <timj@imendio.com>
* tests/onceinit.c (main): fixed array size typo.
Mon Aug 13 14:21:44 2007 Tim Janik <timj@imendio.com>
* tests/onceinit.c: test g_once_init_*() before and after

View File

@ -110,7 +110,7 @@ int
main (int argc,
char *argv[])
{
GThread *threads[11];
GThread *threads[N_THREADS];
int i;
/* test simple initializer */
initializer1();