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/arc.c | |
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/arc.c')
-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 e9db5340e..6b57f51ff 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -3878,7 +3878,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; |