Try to fix warning C6340: Mismatch on sign: 'short' passed as _Param_(2) when some

unsigned type is required in call to 'printf'.

Change-Id: I3076454502e1c98ac225d33d520be5bbe5172c2a
Reviewed-on: https://code.wireshark.org/review/9451
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
AndersBroman 2015-07-02 05:41:45 +02:00 committed by Anders Broman
parent fa6fb76694
commit ae5172f991
1 changed files with 1 additions and 1 deletions

View File

@ -1478,7 +1478,7 @@ static int capture_android_bluetooth_external_parser(char *interface,
return 4;
}
printf("VERBOSE: Client port %u\n", GINT16_FROM_BE(client.sin_port));
printf("VERBOSE: Client port %u\n", GUINT16_FROM_BE(client.sin_port));
}
} else {
int result;