diff base64.c @ 659:d3cd35bec3d0 libavutil

Cosmetics: "* out" -> "*out" for consistency with the other parameters.
author stefano
date Sun, 08 Feb 2009 21:19:04 +0000
parents cc7c1ea68a52
children 3f3e69baaaf8
line wrap: on
line diff
--- a/base64.c	Sun Feb 08 21:16:36 2009 +0000
+++ b/base64.c	Sun Feb 08 21:19:04 2009 +0000
@@ -42,7 +42,7 @@
     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;