Commit 83f24542 authored by stefano's avatar stefano

Cosmetics: "* out" -> "*out" for consistency with the other

parameters.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17072 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0a767cc5
......@@ -42,7 +42,7 @@ static const uint8_t map2[] =
0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33
};
int av_base64_decode(uint8_t * out, const char *in, int out_size)
int av_base64_decode(uint8_t *out, const char *in, int out_size)
{
int i, v;
uint8_t *dst = out;
......
......@@ -27,7 +27,7 @@
* Decodes Base64.
* Parameter order is the same as strncpy().
*/
int av_base64_decode(uint8_t * out, const char *in, int out_size);
int av_base64_decode(uint8_t *out, const char *in, int out_size);
/**
* Encodes Base64.
......
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