X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=sendsync.c;h=429b8f712998b3012c720687bcc74c74608d0e44;hb=refs%2Fheads%2Fmain;hp=53ea713cafbd362b32bc484c49a501cd26c3306a;hpb=5e1b22d763640c4d7a09d07920403d8d491b4410;p=onak.git diff --git a/sendsync.c b/sendsync.c index 53ea713..429b8f7 100644 --- a/sendsync.c +++ b/sendsync.c @@ -13,8 +13,7 @@ * more details. * * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * this program. If not, see . */ #include @@ -30,11 +29,9 @@ #include "parsekey.h" #include "sendsync.h" -int fd_putchar(void *ctx, size_t count, void *c) +size_t fd_putchar(void *ctx, size_t count, void *c) { - fwrite(c, sizeof(char), count, ctx); - - return 0; + return fwrite(c, sizeof(char), count, ctx); } /**