mirror of
https://github.com/bellard/quickjs.git
synced 2024-11-22 13:48:11 +08:00
fixed Date.toLocaleString() (kuzmas)
This commit is contained in:
parent
af308614a8
commit
e1e65aca91
@ -49472,7 +49472,7 @@ static JSValue get_date_string(JSContext *ctx, JSValueConst this_val,
|
||||
break;
|
||||
case 3:
|
||||
pos += snprintf(buf + pos, sizeof(buf) - pos,
|
||||
"%02d:%02d:%02d %cM", (h + 1) % 12 - 1, m, s,
|
||||
"%02d:%02d:%02d %cM", (h + 11) % 12 + 1, m, s,
|
||||
(h < 12) ? 'A' : 'P');
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user