Commit 40f5cd89 authored by Diego Biurrun's avatar Diego Biurrun

Add void keyword to parameterless function declaration.

Originally committed as revision 16712 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d6da3df7
...@@ -105,7 +105,7 @@ char *av_base64_encode(char * buf, int buf_len, const uint8_t * src, int len) ...@@ -105,7 +105,7 @@ char *av_base64_encode(char * buf, int buf_len, const uint8_t * src, int len)
#ifdef TEST_BASE64 #ifdef TEST_BASE64
#include "avutil.h" #include "avutil.h"
int b64test() int b64test(void)
{ {
int numerr = 0; int numerr = 0;
int len; int len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment