diff options
author | Mike Harsch <mike@harschsystems.com> | 2012-10-23 09:46:54 -0600 |
---|---|---|
committer | Mike Harsch <mike@harschsystems.com> | 2012-10-23 09:46:54 -0600 |
commit | 07e76f7a7df8ad4c6f572f1e7b5d850d5b9bddab (patch) | |
tree | 4aae10921160b57b357947546550cd397891e070 | |
parent | afc9e8c49f1cbf4ceff77c73b8077a4b97264c1c (diff) | |
download | libnvpair-07e76f7a7df8ad4c6f572f1e7b5d850d5b9bddab.tar.gz |
switch to regular va_list - compatible?
-rw-r--r-- | nvpair.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -136,7 +136,7 @@ typedef struct nv_alloc { } nv_alloc_t; struct nv_alloc_ops { - int (*nv_ao_init)(nv_alloc_t *, __va_list); + int (*nv_ao_init)(nv_alloc_t *, va_list); void (*nv_ao_fini)(nv_alloc_t *); void *(*nv_ao_alloc)(nv_alloc_t *, size_t); void (*nv_ao_free)(nv_alloc_t *, void *, size_t); |