fixed array size typo.
authorTim Janik <timj@imendio.com>
Mon, 13 Aug 2007 12:30:08 +0000 (12:30 +0000)
committerTim Janik <timj@src.gnome.org>
Mon, 13 Aug 2007 12:30:08 +0000 (12:30 +0000)
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

ChangeLog
tests/onceinit.c

index d0cc465..09a5510 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 0aee759..218ab39 100644 (file)
@@ -110,7 +110,7 @@ int
 main (int   argc,
       char *argv[])
 {
-  GThread *threads[11];
+  GThread *threads[N_THREADS];
   int i;
   /* test simple initializer */
   initializer1();