From 8b2c68985f137fac126f4faa407616592ee4fd6b Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Wed, 4 Jan 2017 21:58:12 +0100 Subject: [PATCH] base64: Remove an unused variable. This is only reported on gcc-6 or newer. Not a serious issue, but still annoying. --- base64.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/base64.c b/base64.c index 7b8fe292..122465f8 100644 --- a/base64.c +++ b/base64.c @@ -13,8 +13,6 @@ #include "base64.h" #include "string.h" -static const char Base64[] = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; static const unsigned char base64_tab[256] = { 255, 255, 255, 255, 255, 255, 255, 255, /* 00-07 */ 255, 255, 255, 255, 255, 255, 255, 255, /* 08-0f */ -- 2.39.5