diff options
author | Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> | 2007-11-14 16:59:50 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-14 18:45:40 -0800 |
commit | cc9f2f8f68efcc73d8793a4df2c4c50196e90080 (patch) | |
tree | 7da05db63c83c8e9b05fc9d75e64b229bc6a7fb4 /samples/markers/probe-example.c | |
parent | 5f9468cebfdb7b809139e7682d388f9c31297936 (diff) |
Linux Kernel Markers: fix samples to follow format string standard
Add the field names to marker example format string.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'samples/markers/probe-example.c')
-rw-r--r-- | samples/markers/probe-example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/markers/probe-example.c b/samples/markers/probe-example.c index 238b2e384fc..a3679753561 100644 --- a/samples/markers/probe-example.c +++ b/samples/markers/probe-example.c @@ -53,7 +53,7 @@ void probe_subsystem_eventb(const struct marker *mdata, void *private, static struct probe_data probe_array[] = { { .name = "subsystem_event", - .format = "%d %s", + .format = "integer %d string %s", .probe_func = probe_subsystem_event }, { .name = "subsystem_eventb", .format = MARK_NOARGS, |