summaryrefslogtreecommitdiffstats
path: root/Source/cmBase32.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmBase32.cxx')
-rw-r--r--Source/cmBase32.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmBase32.cxx b/Source/cmBase32.cxx
index a9c15c2..e8e46aa 100644
--- a/Source/cmBase32.cxx
+++ b/Source/cmBase32.cxx
@@ -12,7 +12,7 @@ inline unsigned char Base32EncodeChar(int schar)
return Base32EncodeTable[schar];
}
-void Base32Encode5(const unsigned char src[5], char dst[8])
+static void Base32Encode5(const unsigned char src[5], char dst[8])
{
// [0]:5 bits
dst[0] = Base32EncodeChar((src[0] >> 3) & 0x1F);