Chore: update dependencies

This commit is contained in:
kr328
2022-05-12 20:15:21 +08:00
parent e6859ff56d
commit 5c3ab5470a
4 changed files with 7 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ func init() {
defer log.UnSubscribe(sub)
for item := range sub {
msg := item.(*log.Event)
msg := item.(log.Event)
cPayload := C.CString(msg.Payload)
@@ -52,7 +52,7 @@ func subscribeLogcat(remote unsafe.Pointer) {
defer log.UnSubscribe(sub)
for i := range sub {
msg, ok := i.(*log.Event)
msg, ok := i.(log.Event)
if !ok {
continue
}