From 5ee63777593c19d6b5a89a410248aacc210579fe Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 19 Dec 2008 10:24:26 -0800 Subject: [PATCH] Fix missing void in prototype --- module/zfs/arc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/zfs/arc.c b/module/zfs/arc.c index 73aecb2852..e8103f7c7c 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;