Change pvalloc call to valloc in test.
Found by kostyak, the call should have been valloc, not pvalloc.
Test: Ran unit tests on taimen.
Change-Id: I676b8f3f8051be6768e2ad87b579844560b4f619
diff --git a/tests/malloc_test.cpp b/tests/malloc_test.cpp
index 983592f..f69e598 100644
--- a/tests/malloc_test.cpp
+++ b/tests/malloc_test.cpp
@@ -328,7 +328,7 @@
TEST(malloc, valloc_std) {
size_t pagesize = sysconf(_SC_PAGESIZE);
- void* ptr = pvalloc(100);
+ void* ptr = valloc(100);
ASSERT_TRUE(ptr != nullptr);
ASSERT_TRUE((reinterpret_cast<uintptr_t>(ptr) & (pagesize-1)) == 0);
free(ptr);