[Client] Fix printf conversion for MAX_PKT_SIZE

This commit is contained in:
Matteo Cypriani 2012-05-23 18:46:55 +02:00
parent 24a07f9e01
commit bb45348f05
1 changed files with 2 additions and 2 deletions

View File

@ -329,8 +329,8 @@ void check_configuration()
{
#ifdef DEBUG
fprintf(stderr,
"Warning! pkt_size cannot be greater than %hu bytes:"
" failing back to %hu.\n", MAX_PKT_SIZE, MAX_PKT_SIZE) ;
"Warning! pkt_size cannot be greater than %d bytes:"
" failing back to %d.\n", MAX_PKT_SIZE, MAX_PKT_SIZE) ;
#endif // DEBUG
options.pkt_size = MAX_PKT_SIZE ;
}