Fix typo on fprintf call

This commit is contained in:
Xavier Del Campo Romero 2020-12-31 00:01:58 +01:00
parent 28b866b150
commit bf989aec3b
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ static int wait_ack(struct msg *msg)
} while (ret < 0 && errno == EAGAIN);
if (msg->type != MSG_TYPE_ACK) {
fprintf(stderr, "unexpected msg.type %d\n", msg->type);
fprintf(stderr, "wait_ack: unexpected msg.type %d\n", msg->type);
return 1;
}