X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=libust%2Ftracectl.c;h=7c65e3f82119496c6a608283c78c27ab1cc8eff4;hb=08230db7e2e536bddf0015fa663b6d10abea30f1;hp=533cc6599639bb5750d4f4437600c2b407a2e0f3;hpb=5f04cdcbbea9d600b3f325dd739b217ab2a8f78a;p=ust.git diff --git a/libust/tracectl.c b/libust/tracectl.c index 533cc65..7c65e3f 100644 --- a/libust/tracectl.c +++ b/libust/tracectl.c @@ -253,7 +253,7 @@ void *listener_main(void *p) continue; } - DBG("received a message! it's: %s\n", recvbuf); + DBG("received a message! it's: %s", recvbuf); len = strlen(recvbuf); if(!strcmp(recvbuf, "print_markers")) { @@ -875,7 +875,7 @@ static void __attribute__((constructor(1000))) init() if(autoprobe_val) { struct marker_iter iter; - DBG("Autoprobe enabled.\n"); + DBG("Autoprobe enabled."); /* Ensure markers are initialized */ //init_markers(); @@ -910,9 +910,9 @@ static void __attribute__((constructor(1000))) init() marker_iter_reset(&iter); marker_iter_start(&iter); - DBG("now iterating on markers already registered\n"); + DBG("now iterating on markers already registered"); while(iter.marker) { - DBG("now iterating on marker %s\n", iter.marker->name); + DBG("now iterating on marker %s", iter.marker->name); auto_probe_connect(iter.marker); marker_iter_next(&iter); }