[CTRACER]: Add missing newlines after kretprobes

Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2006-12-24 14:41:07 -02:00
parent 6497bcae21
commit e07a9095c4
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ static int function__emit_kretprobes(const struct function *self)
"\t.kp = { .symbol_name = \"%s\", },\n"
"\t.handler = (kretprobe_handler_t)kretprobe_handler__%s,\n"
"\t.maxactive = -1,\n\n"
"};", self->name, self->name, self->name);
"};\n\n", self->name, self->name, self->name);
}
static int cu_emit_kretprobes_iterator(struct cu *cu, void *cookie)