Print message ID as unsigned integer

This commit is contained in:
Martin Willi 2011-11-21 11:54:29 +01:00
parent 9e40e3e9fa
commit 3bd5fcc832
1 changed files with 1 additions and 1 deletions

View File

@ -1100,7 +1100,7 @@ static char* get_string(private_message_t *this, char *buf, int len)
memset(buf, 0, len);
len--;
written = snprintf(pos, len, "%N %s %d [",
written = snprintf(pos, len, "%N %s %u [",
exchange_type_names, this->exchange_type,
this->is_request ? "request" : "response",
this->message_id);