mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Fix C compilation warning in duktape package
This commit is contained in:
parent
d9c75cd10e
commit
db60898581
1 changed files with 1 additions and 1 deletions
2
vendor/gopkg.in/olebedev/go-duktape.v3/duk_logging.c
generated
vendored
2
vendor/gopkg.in/olebedev/go-duktape.v3/duk_logging.c
generated
vendored
|
|
@ -135,7 +135,7 @@ static duk_ret_t duk__logger_prototype_log_shared(duk_context *ctx) {
|
|||
duk_size_t arg_len;
|
||||
duk_uint8_t *buf, *p;
|
||||
const duk_uint8_t *q;
|
||||
duk_uint8_t date_buf[32]; /* maximum format length is 24+1 (NUL), round up. */
|
||||
duk_uint8_t date_buf[85]; /* maximum format length is 24+1 (NUL), round up. */
|
||||
duk_size_t date_len;
|
||||
duk_small_int_t rc;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue