From 7367da56c0e018f8194dd92535f8db9d1983f6d7 Mon Sep 17 00:00:00 2001 From: yugui Date: Sun, 30 Nov 2008 09:24:50 +0000 Subject: merges r20379 from trunk into ruby_1_9_1. * strftime.c (rb_strftime): should add padding for %%. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- strftime.c | 1 + 1 file changed, 1 insertion(+) (limited to 'strftime.c') diff --git a/strftime.c b/strftime.c index 79c5fe4fa8..248c695e01 100644 --- a/strftime.c +++ b/strftime.c @@ -319,6 +319,7 @@ rb_strftime(char *s, size_t maxsize, const char *format, const struct tm *timept goto unknown; case '%': + FILL_PADDING(1); *s++ = '%'; continue; -- cgit v1.2.3