Commit ee03617b authored by Wayne Davison's avatar Wayne Davison

Cast a uchar* arg to char* for write_buf().

parent 19cb6106
......@@ -841,7 +841,7 @@ notify_others:
#endif
}
*lb = len;
write_buf(f_out_name, lenbuf, lb - lenbuf + 1);
write_buf(f_out_name, (char*)lenbuf, lb - lenbuf + 1);
write_buf(f_out_name, fuzzy_file->basename, len);
}
}
......
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