>From 4c824a67c376afa907f1f7ade4859326efa455ea Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Mon, 27 Jul 2015 10:46:45 -0700
Subject: [PATCH 1/7] Pacify Visual Studio 2013 'const' again

Problem reported by Kees Dekker in:
http://mm.icann.org/pipermail/tz/2015-July/022525.html
* strftime.c (_yconv): Omit last 'const' too.
---
 strftime.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/strftime.c b/strftime.c
index c01ce19..7c5e516 100644
--- a/strftime.c
+++ b/strftime.c
@@ -587,7 +587,7 @@ _add(const char *str, char *pt, const char *ptlim)
 
 static char *
 _yconv(int a, int b, bool convert_top, bool convert_yy,
-       char *pt, const char *const ptlim)
+       char *pt, const char *ptlim)
 {
 	register int	lead;
 	register int	trail;
-- 
2.1.4

