fix word err (#1847)

This commit is contained in:
华仔
2024-01-03 20:05:28 +08:00
committed by GitHub
parent 9e000da81f
commit fb97668f9e
2 changed files with 2 additions and 2 deletions

View File

@@ -147,7 +147,7 @@ _ctrl(struct gate * g, const void * msg, int sz) {
} }
return; return;
} }
skynet_error(ctx, "[gate] Unkown command : %s", command); skynet_error(ctx, "[gate] Unknown command : %s", command);
} }
static void static void

View File

@@ -680,7 +680,7 @@ mainloop(struct skynet_context * context, void * ud, int type, int session, uint
if (id) { if (id) {
report_harbor_down(h,id); report_harbor_down(h,id);
} else { } else {
skynet_error(context, "Unkown fd (%d) closed", message->id); skynet_error(context, "Unknown fd (%d) closed", message->id);
} }
break; break;
} }