From: Prakash Surya Date: Fri, 18 Nov 2011 22:27:37 +0000 (-0800) Subject: Fix a typo referencing an incorrect symbol X-Git-Tag: zfs-0.8.0-rc1~152^2~428 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e05bec805b066e72266281a03e57e61e7dd53264;p=zfs Fix a typo referencing an incorrect symbol The splat_taskq_test4_common function was incorrectly referencing the splat_taskq-test13_func symbol, when it meant to be using the splat_taskq_test4_func symbol. Signed-off-by: Brian Behlendorf Closes #61 --- diff --git a/module/splat/splat-taskq.c b/module/splat/splat-taskq.c index a7c537236..0f74b5ae5 100644 --- a/module/splat/splat-taskq.c +++ b/module/splat/splat-taskq.c @@ -344,7 +344,7 @@ splat_taskq_test4_common(struct file *file, void *arg, int minalloc, splat_vprint(file, SPLAT_TASKQ_TEST4_NAME, "Taskq '%s' function '%s' dispatch " "%d failed\n", tq_arg.name, - sym2str(splat_taskq_test13_func), j); + sym2str(splat_taskq_test4_func), j); rc = -EINVAL; goto out; }