changeset 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 396c27769b0e
files base64.c base64.h
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
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;
--- a/base64.h	Sun Feb 08 21:16:36 2009 +0000
+++ b/base64.h	Sun Feb 08 21:19:04 2009 +0000
@@ -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.