2
0
mirror of https://github.com/openvswitch/ovs synced 2025-09-02 15:25:22 +00:00

lib/util: Make raw_ctz() implementation non-static.

Signed-off By: Jarno Rajahalme <jrajahalme@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
Jarno Rajahalme
2013-11-18 09:28:44 -08:00
parent fcd5d2301f
commit 481da12c8d

View File

@@ -894,7 +894,7 @@ log_2_ceil(uint32_t n)
#elif __GNUC__ >= 4 && UINT_MAX == UINT32_MAX #elif __GNUC__ >= 4 && UINT_MAX == UINT32_MAX
/* Defined inline in util.h. */ /* Defined inline in util.h. */
#else #else
static int int
raw_ctz(uint32_t n) raw_ctz(uint32_t n)
{ {
unsigned int k; unsigned int k;