Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jun 26, 2023
1 parent ba50f3b commit fb17fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion receiver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ main(void)
/*request.r_rlen = ntohll(request.r_rlen);*/

printf("receiving %s, %llu bytes\n",
request.r_filename, request.r_len);
request.r_filename, (long long unsigned int)request.r_len);

if(request.r_len) {
fstream ofs(request.r_filename, ios::out|ios::binary|ios::trunc);
Expand Down

0 comments on commit fb17fbf

Please sign in to comment.