diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2012-06-09 11:02:55 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2012-06-09 11:02:55 +0000 |
commit | 2e8c56dd976297ecf5a8274133f18f7311df1d4c (patch) | |
tree | ad042dce267dd321653d7552f861f704d0d30762 | |
parent | c81baf94fd62c83c95a70727ad90da88092ccad7 (diff) | |
download | mandoc-2e8c56dd976297ecf5a8274133f18f7311df1d4c.tar.gz |
Make test-ohash.c work on OpenBSD (it now works on have/havenots of OpenBSD
and OSX).
-rw-r--r-- | test-ohash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-ohash.c b/test-ohash.c index 72b3e3dd..84d1b677 100644 --- a/test-ohash.c +++ b/test-ohash.c @@ -12,7 +12,7 @@ main(void) struct ohash h; struct ohash_info i; i.halloc = i.alloc = xalloc; - i.free = free; + i.hfree = xfree; ohash_init(&h, 2, &i); ohash_delete(&h); return 0; |