diff options
author | Tim Janik <timj@imendio.com> | 2007-08-13 12:30:08 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2007-08-13 12:30:08 +0000 |
commit | e0dffd03fb023d518121e3c0829adcadf66f3c8e (patch) | |
tree | 1b463806f2ef0683c15d97a362493b615885a8be /tests | |
parent | 1ce6d47e3a5efea2211569b97af81a6305eaf13b (diff) |
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
Diffstat (limited to 'tests')
-rw-r--r-- | tests/onceinit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/onceinit.c b/tests/onceinit.c index 0aee7597e..218ab39e4 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(); |