changeset 428:a092b8236682 libavutil

Add a couple of missing consts. patch by Sigbjrn Skjret, cisc broadpark no
author diego
date Mon, 14 Jan 2008 22:10:19 +0000
parents e7192ff1857d
children 3be382cb92ba
files base64.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/base64.c	Thu Jan 10 10:35:37 2008 +0000
+++ b/base64.c	Mon Jan 14 22:10:19 2008 +0000
@@ -29,7 +29,7 @@
 #include "base64.h"
 
 /* ---------------- private code */
-static uint8_t map2[] =
+static const uint8_t map2[] =
 {
     0x3e, 0xff, 0xff, 0xff, 0x3f, 0x34, 0x35, 0x36,
     0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0xff,