From 49d70d5aa7bc256392cc32127616c311c69cdd92 Mon Sep 17 00:00:00 2001 From: Nils Carlson Date: Fri, 14 Jan 2011 22:08:59 +0100 Subject: [PATCH] Fix a minor ugliness Variable was defined in middle of a block --- libust/tracectl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libust/tracectl.c b/libust/tracectl.c index b73fa7c..e877e62 100644 --- a/libust/tracectl.c +++ b/libust/tracectl.c @@ -1232,6 +1232,7 @@ free_name: static void __attribute__((constructor)) init() { + struct timespec ts; int result; char* autoprobe_val = NULL; char* subbuffer_size_val = NULL; @@ -1266,7 +1267,7 @@ static void __attribute__((constructor)) init() create_listener(); /* Get clock the clock source type */ - struct timespec ts; + /* Default clock source */ ust_clock_source = CLOCK_TRACE; if (clock_gettime(ust_clock_source, &ts) != 0) { -- 2.34.1