From: Wayne Davison Date: Sun, 20 Feb 2005 16:56:30 +0000 (+0000) Subject: Cast a uchar* arg to char* for write_buf(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/ee03617b3de2ae6488d957b87b87cbe55e205f7c Cast a uchar* arg to char* for write_buf(). --- diff --git a/generator.c b/generator.c index 93a707a8..12d790c5 100644 --- a/generator.c +++ b/generator.c @@ -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); } }