diff options
author | David Robillard <d@drobilla.net> | 2011-10-09 23:00:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-10-09 23:00:47 +0000 |
commit | dc02039e446f90323b295cd78b7993617beafd7e (patch) | |
tree | f50365a55da6bb75a1875149c089d1ff016d3885 /test | |
parent | b3af6f000f23cdc0e3fafdfa407d4cf592c946f4 (diff) | |
download | zix-dc02039e446f90323b295cd78b7993617beafd7e.tar.gz zix-dc02039e446f90323b295cd78b7993617beafd7e.tar.bz2 zix-dc02039e446f90323b295cd78b7993617beafd7e.zip |
Fix ZixRing error when reading split/wrapped messages.
Use a non-power-of-two message size in ZixRing test to test this.
git-svn-id: http://svn.drobilla.net/zix/trunk@43 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
Diffstat (limited to 'test')
-rw-r--r-- | test/ring_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ring_test.c b/test/ring_test.c index ede0bac..7cde650 100644 --- a/test/ring_test.c +++ b/test/ring_test.c @@ -23,7 +23,7 @@ #include "zix/ring.h" -#define MSG_SIZE 4 +#define MSG_SIZE 20 ZixRing* ring = 0; size_t n_writes = 0; |