Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a5efd925 authored by Wenji Huang's avatar Wenji Huang Committed by Steven Rostedt
Browse files

tracing: Fix typo of info text in trace_kprobe.c



Signed-off-by: default avatarWenji Huang <wenji.huang@oracle.com>
LKML-Reference: <1266997226-6833-2-git-send-email-wenji.huang@oracle.com>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 6574658b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
		}
	}