tracing: Fix typo of info text in trace_kprobe.c
authorWenji Huang <wenji.huang@oracle.com>
Wed, 24 Feb 2010 07:40:23 +0000 (15:40 +0800)
committerSteven Rostedt <rostedt@goodmis.org>
Thu, 25 Feb 2010 15:36:29 +0000 (10:36 -0500)
Signed-off-by: Wenji Huang <wenji.huang@oracle.com>
LKML-Reference: <1266997226-6833-2-git-send-email-wenji.huang@oracle.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/trace_kprobe.c

index c990299..8d4bd16 100644 (file)
@@ -651,12 +651,12 @@ static int create_trace_probe(int argc, char **argv)
                        event = strchr(group, '/') + 1;
                        event[-1] = '\0';
                        if (strlen(group) == 0) {
-                               pr_info("Group name is not specifiled\n");
+                               pr_info("Group name is not specified\n");
                                return -EINVAL;
                        }
                }
                if (strlen(event) == 0) {
-                       pr_info("Event name is not specifiled\n");
+                       pr_info("Event name is not specified\n");
                        return -EINVAL;
                }
        }