diff options
author | Brian Behlendorf <[email protected]> | 2010-08-26 09:52:41 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2010-08-27 15:34:03 -0700 |
commit | 0bc8fd7884fc603eb7646c43b1fc0b18e37e7d62 (patch) | |
tree | 08033422554b4945355739c0ac59193a9d29acb7 /module/zfs/include/sys/dmu.h | |
parent | 0ccd9d24e4fdbe9cd07f838d0a62083e8eca95f2 (diff) |
Fix gcc invalid prototype warnings
Gcc -Wall warn: 'invalid prototype'
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'module/zfs/include/sys/dmu.h')
-rw-r--r-- | module/zfs/include/sys/dmu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/include/sys/dmu.h b/module/zfs/include/sys/dmu.h index 07f5949eb..4580170db 100644 --- a/module/zfs/include/sys/dmu.h +++ b/module/zfs/include/sys/dmu.h @@ -529,8 +529,8 @@ int dmu_xuio_add(struct xuio *uio, struct arc_buf *abuf, offset_t off, int dmu_xuio_cnt(struct xuio *uio); struct arc_buf *dmu_xuio_arcbuf(struct xuio *uio, int i); void dmu_xuio_clear(struct xuio *uio, int i); -void xuio_stat_wbuf_copied(); -void xuio_stat_wbuf_nocopy(); +void xuio_stat_wbuf_copied(void); +void xuio_stat_wbuf_nocopy(void); extern int zfs_prefetch_disable; |