diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2009-03-01 16:46:45 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2009-03-01 16:46:45 +0000 |
commit | 84fdf0d00eb3b615ca4cbef8ce54881c14745264 (patch) | |
tree | 042f1ff906bc7f9753e36797fbb22676899f6173 /tests | |
parent | 979f3c10b98d84fcc54f7118ee63114a1016318b (diff) | |
download | glib-84fdf0d00eb3b615ca4cbef8ce54881c14745264.tar.gz |
Fix distcheck
svn path=/trunk/; revision=7932
Diffstat (limited to 'tests')
-rw-r--r-- | tests/slice-threadinit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/slice-threadinit.c b/tests/slice-threadinit.c index 8c0b03299..5c44075b9 100644 --- a/tests/slice-threadinit.c +++ b/tests/slice-threadinit.c @@ -23,7 +23,7 @@ #define N_PAGES (101) /* number of pages to sample */ #define SAMPLE_SIZE (7) #define PAGE_SIZE (128) /* must be <= minimum GSlice alignment block */ -#define MAGAZINE_PROBES { 77, 265, 347 } /* block sizes hopefully unused by g_thread_init */ +#define MAGAZINE_PROBES { 81, 265, 347 } /* block sizes hopefully unused by g_thread_init */ #define MAX_PROBE_TRIALS (1031) /* must be >= maximum magazine size */ #define ALIGN(size, base) ((base) * (gsize) (((size) + (base) - 1) / (base))) @@ -130,7 +130,7 @@ main (int argc, /* release magazine probes to be retained across g_thread_init */ for (j = 0; j < N_MAGAZINE_PROBES; j++) g_slice_free1 (magazine_probes[j], mps[j]); - /* mps[*] now contains pointers to releaed slices */ + /* mps[*] now contains pointers to released slices */ /* initialize threading (should retain allocator state) */ g_thread_init (NULL); |