diff options
author | Max Romanov <max.romanov@nginx.com> | 2018-10-02 19:49:48 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2018-10-02 19:49:48 +0300 |
commit | c8b30ef4da02278308e0ed050d9a937134a6aa45 (patch) | |
tree | f806e02809310a137848598b5a3b0003050e8237 /src/go | |
parent | cb1b0744930801b6e06d05f788c3e7cb40163167 (diff) | |
download | unit-c8b30ef4da02278308e0ed050d9a937134a6aa45.tar.gz unit-c8b30ef4da02278308e0ed050d9a937134a6aa45.tar.bz2 |
Go: fixing typo in log messages.
Diffstat (limited to 'src/go')
-rw-r--r-- | src/go/unit/nxt_cgo_lib.c | 2 | ||||
-rw-r--r-- | src/go/unit/port.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/go/unit/nxt_cgo_lib.c b/src/go/unit/nxt_cgo_lib.c index 9c080730..172bef88 100644 --- a/src/go/unit/nxt_cgo_lib.c +++ b/src/go/unit/nxt_cgo_lib.c @@ -203,5 +203,5 @@ nxt_cgo_request_done(uintptr_t req, int res) void nxt_cgo_warn(uintptr_t msg, uint32_t msg_len) { - nxt_unit_warn(NULL, ".*s", (int) msg_len, (char *) msg); + nxt_unit_warn(NULL, "%.*s", (int) msg_len, (char *) msg); } diff --git a/src/go/unit/port.go b/src/go/unit/port.go index f716c9ec..a68cae74 100644 --- a/src/go/unit/port.go +++ b/src/go/unit/port.go @@ -163,7 +163,7 @@ func nxt_go_port_recv(pid C.int, id C.int, buf unsafe.Pointer, buf_size C.int, GoBytes(oob, oob_size)) if err != nil { - nxt_go_warn("write result %d (%d), %s", n, oobn, err) + nxt_go_warn("read result %d (%d), %s", n, oobn, err) } return C.ssize_t(n) |