diff options
author | H. Peter Anvin <hpa@zytor.com> | 2001-10-23 03:40:15 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2001-10-23 03:40:15 +0000 |
commit | cc4b12ea0755e60aa0a3e5e153f5c68eda12994b (patch) | |
tree | 7afa0641e07ef1d1dcf0ace9f4472fb32572207a /teststore.c | |
parent | 9e0923f6291e0a6f98a91bf5cafcb9ef0ed0405f (diff) | |
download | lpsm-cc4b12ea0755e60aa0a3e5e153f5c68eda12994b.tar.gz lpsm-cc4b12ea0755e60aa0a3e5e153f5c68eda12994b.tar.xz lpsm-cc4b12ea0755e60aa0a3e5e153f5c68eda12994b.zip |
Adjust to new lpsm_arena_init() API
Diffstat (limited to 'teststore.c')
-rw-r--r-- | teststore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/teststore.c b/teststore.c index a948150..9d3910f 100644 --- a/teststore.c +++ b/teststore.c @@ -22,7 +22,7 @@ int main(int argc, char *argv[]) void *buf; int arena_len = 16384; - buf = lpsm_arena_init("test.dat", "test.log", &arena_len); + buf = lpsm_arena_init("test.dat", "test.log", &arena_len, NULL); printf("Read from first page: %s\n", (char *)buf); |