From d56ccbd8f97e90d34a2b18a45fbd6681d3dba726 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sun, 24 Aug 2008 23:34:13 -0400 Subject: [PATCH] libblkid: Fix namespace leakage of unicode_16be_to_utf8 Signed-off-by: "Theodore Ts'o" --- lib/blkid/probe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/blkid/probe.c b/lib/blkid/probe.c index 92052e1c9..04eb29a77 100644 --- a/lib/blkid/probe.c +++ b/lib/blkid/probe.c @@ -1051,8 +1051,8 @@ static int probe_gfs2(struct blkid_probe *probe, return 1; } -void unicode_16be_to_utf8(unsigned char *str, int out_len, - const unsigned char *buf, int in_len) +static void unicode_16be_to_utf8(unsigned char *str, int out_len, + const unsigned char *buf, int in_len) { int i, j; unsigned int c; -- 2.47.2