summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/c/urweb.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/c/urweb.c b/src/c/urweb.c
index 036740aa..0ec741cc 100644
--- a/src/c/urweb.c
+++ b/src/c/urweb.c
@@ -2416,7 +2416,6 @@ char *uw_Basis_sqlifyTime(uw_context ctx, uw_Basis_time t) {
if (localtime_r(&t, &stm)) {
s = uw_malloc(ctx, TIMES_MAX);
- --stm.tm_hour;
len = strftime(s, TIMES_MAX, TIME_FMT, &stm);
r = uw_malloc(ctx, len + 14);
sprintf(r, "'%s'::timestamp", s);