test/blobfs/blobfs_sync: fix build after API change

Fixes: commit 18bc3a5 ("test/blobfs: Test create sync file")

Change-Id: Ic4465d0ae0536baa925a4516529da0faf9a21c45
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2017-05-31 00:37:27 -07:00
parent 7f94346a07
commit dc772e543f

View File

@ -219,8 +219,8 @@ fs_create_sync(void)
ut_send_request(_fs_init, NULL);
spdk_allocate_thread();
channel = spdk_fs_alloc_io_channel_sync(g_fs, SPDK_IO_PRIORITY_DEFAULT);
spdk_allocate_thread(_fs_send_msg, NULL);
channel = spdk_fs_alloc_io_channel_sync(g_fs);
CU_ASSERT(channel != NULL);
rc = spdk_fs_create_file(g_fs, channel, "testfile");