From e05bec805b066e72266281a03e57e61e7dd53264 Mon Sep 17 00:00:00 2001 From: Prakash Surya Date: Fri, 18 Nov 2011 14:27:37 -0800 Subject: [PATCH] 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 --- module/splat/splat-taskq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.40.0