From e43efba986e394c099d043a4fb9ce2df61afdbd0 Mon Sep 17 00:00:00 2001 From: Pierre-Marc Fournier Date: Thu, 25 Feb 2010 17:55:59 -0500 Subject: [PATCH] powerof_two: make static --- libust/tracectl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libust/tracectl.c b/libust/tracectl.c index d517fe0..3cb86ed 100644 --- a/libust/tracectl.c +++ b/libust/tracectl.c @@ -509,7 +509,7 @@ static int do_cmd_get_subbuf_size(const char *recvbuf, struct ustcomm_source *sr return retval; } -unsigned int poweroftwo(unsigned int x) +static unsigned int poweroftwo(unsigned int x) { unsigned int power2 = 1; unsigned int hardcoded = 2147483648; /* FIX max 2^31 */ -- 2.34.1