Commit e1788382 authored by Wayne Davison's avatar Wayne Davison

Silenced a compiler warning.

parent 37a4386d
......@@ -402,7 +402,7 @@ static void delete_in_dir(struct file_list *flist, char *fbuf,
if (flist_find(flist, fp) < 0) {
f_name(fp, delbuf);
if (delete_delay_fp)
fprintf(delete_delay_fp, "%o %s%c", fp->mode, delbuf, '\0');
fprintf(delete_delay_fp, "%o %s%c", (short)fp->mode, delbuf, '\0');
else
delete_item(delbuf, fp->mode, NULL, DEL_RECURSE);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment