diff base64.c @ 716:3f3e69baaaf8 libavutil

Mark non-exported functions in test and example programs as static.
author diego
date Tue, 31 Mar 2009 09:32:59 +0000
parents d3cd35bec3d0
children 0795a743bda1
line wrap: on
line diff
--- a/base64.c	Sun Mar 29 14:42:52 2009 +0000
+++ b/base64.c	Tue Mar 31 09:32:59 2009 +0000
@@ -106,7 +106,8 @@
 #define MAX_DATA_SIZE    1024
 #define MAX_ENCODED_SIZE 2048
 
-int test_encode_decode(const uint8_t *data, unsigned int data_size, const char *encoded_ref)
+static int test_encode_decode(const uint8_t *data, unsigned int data_size,
+                              const char *encoded_ref)
 {
     char  encoded[MAX_ENCODED_SIZE];
     uint8_t data2[MAX_DATA_SIZE];