aboutsummaryrefslogtreecommitdiffstats
path: root/strftime.c
diff options
context:
space:
mode:
Diffstat (limited to 'strftime.c')
-rw-r--r--strftime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/strftime.c b/strftime.c
index c390d2b6e0..3bdf7f6ecf 100644
--- a/strftime.c
+++ b/strftime.c
@@ -451,12 +451,12 @@ rb_strftime_with_timespec(char *s, size_t maxsize, const char *format, const str
break;
case 1: /* %:z -> +hh:mm */
- precision = precision <= 5 ? 2 : precision-3;
+ precision = precision <= 6 ? 2 : precision-4;
NEEDS(precision + 4);
break;
case 2: /* %::z -> +hh:mm:ss */
- precision = precision <= 5 ? 2 : precision-3;
+ precision = precision <= 9 ? 2 : precision-7;
NEEDS(precision + 7);
break;