diff options
| author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-12 14:05:20 +0200 | 
|---|---|---|
| committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-12 14:05:36 +0200 | 
| commit | 9879cd8393b0d5ec26885de9f9dce2d34997db42 (patch) | |
| tree | dcaa28865878cb8625025f6479f9ac4992a853c2 /tests | |
| parent | 8e9e170b8f4b15fcf3522cdc1a5fd76e51c16dd3 (diff) | |
Fix argument number in block processor unit test
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/blk_proc_order.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/blk_proc_order.c b/tests/blk_proc_order.c index 91832e0..9157262 100644 --- a/tests/blk_proc_order.c +++ b/tests/blk_proc_order.c @@ -98,7 +98,7 @@ int main(void)  	main_thread = pthread_self();  #endif -	proc = sqfs_block_processor_create(4 * sizeof(int), cmp, 4, +	proc = sqfs_block_processor_create(4 * sizeof(int), cmp, 4, 10,  					   NULL, block_callback);  	assert(proc != NULL); | 
