Skip to content
Snippets Groups Projects
Commit 6507fe8b authored by rswindell's avatar rswindell
Browse files

Fixed printf format to make gcc happy.

parent 3ce8ddc9
No related branches found
No related tags found
No related merge requests found
......@@ -249,7 +249,7 @@ int main(int argc, char **argv)
smb.status.last_msg=n;
else
sort_index(&smb);
printf("Saving message base status (%u total messages).\n",n);
printf("Saving message base status (%lu total messages).\n",n);
if((i=smb_putstatus(&smb))!=0)
printf("\nsmb_putstatus returned %d: %s\n",i,smb.last_error);
smb_unlocksmbhdr(&smb);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment