Skip to content
Snippets Groups Projects
Commit 46e64a88 authored by rswindell's avatar rswindell
Browse files

Fixed gcc printf format warning.

parent e0f17b8e
No related branches found
No related tags found
No related merge requests found
...@@ -276,7 +276,7 @@ int main(int argc, char **argv) ...@@ -276,7 +276,7 @@ int main(int argc, char **argv)
fprintf(stderr,"%sHeader length mismatch\n",beep); fprintf(stderr,"%sHeader length mismatch\n",beep);
msgerr=1; msgerr=1;
if(extinfo) if(extinfo)
printf("MSGERR: Header length (%hu) does not match calculcated length (%lu)\n" printf("MSGERR: Header length (%hu) does not match calculcated length (%u)\n"
,msg.hdr.length,smb_getmsghdrlen(&msg)); ,msg.hdr.length,smb_getmsghdrlen(&msg));
hdrlenerr++; hdrlenerr++;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment