summaryrefslogtreecommitdiff
path: root/upb/json/parser.rl
diff options
context:
space:
mode:
Diffstat (limited to 'upb/json/parser.rl')
-rw-r--r--upb/json/parser.rl5
1 files changed, 2 insertions, 3 deletions
diff --git a/upb/json/parser.rl b/upb/json/parser.rl
index 75edb3b..3444257 100644
--- a/upb/json/parser.rl
+++ b/upb/json/parser.rl
@@ -1535,9 +1535,8 @@ static bool end_timestamp_base(upb_json_parser *p, const char *ptr) {
timestamp_buf[UPB_TIMESTAMP_BASE_SIZE + 3] = 0;
#if defined __MINGW32__ || defined __MINGW64__
- upb_status_seterrf(
- &p->status, "error parsing timestamp: mingw doesn't support strptime");
- upb_env_reporterror(p->env, &p->status);
+ upb_status_seterrf(p->status,
+ "error parsing timestamp: mingw doesn't support strptime");
return false;
#else
/* Parse seconds */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback