summaryrefslogtreecommitdiffstats
path: root/uemis.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2012-10-25 20:21:43 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-10-25 20:21:43 -0700
commitd88c69b97a9aa563cba0dc5c2b4aad2b4ce61b12 (patch)
tree27880310ad17a9a34ee576bdd4de22d8028af923 /uemis.c
parentac723ace81f5a47e04845a5028a34431152b656e (diff)
parentb8a4730661be478d890aa3bc327d8af76ef4b86b (diff)
downloadsubsurface-d88c69b97a9aa563cba0dc5c2b4aad2b4ce61b12.tar.gz
Merge branch 'uemis-next'
No reason to keep this in a separate branch. If we decide to make a 2.1.1 release we'll simply cherry pick only the fixes.
Diffstat (limited to 'uemis.c')
-rw-r--r--uemis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uemis.c b/uemis.c
index d4c166b88..237fd6c16 100644
--- a/uemis.c
+++ b/uemis.c
@@ -43,7 +43,7 @@ static void decodeblock( unsigned char in[4], unsigned char out[3] ) {
/*
* decode a base64 encoded stream discarding padding, line breaks and noise
*/
-static void decode( uint8_t *inbuf, uint8_t *outbuf, int inbuf_len ) {
+void decode( uint8_t *inbuf, uint8_t *outbuf, int inbuf_len ) {
uint8_t in[4], out[3], v;
int i,len,indx_in=0,indx_out=0;