diff options
author | Brian Behlendorf <[email protected]> | 2008-12-19 10:24:26 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2008-12-19 10:24:26 -0800 |
commit | 5ee63777593c19d6b5a89a410248aacc210579fe (patch) | |
tree | c24d1e31c7bfd3d38cf35fd4fd331e403bde8ed4 /module | |
parent | c8f253cda8b3826fe609cb5365d538d3a3bb3dc8 (diff) |
Fix missing void in prototype
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/arc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/arc.c b/module/zfs/arc.c index 73aecb285..e8103f7c7 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -3703,7 +3703,7 @@ out: * Free buffers that were tagged for destruction. */ static void -l2arc_do_free_on_write() +l2arc_do_free_on_write(void) { list_t *buflist; l2arc_data_free_t *df, *df_prev; |