]> the.earth.li Git - onak.git/blobdiff - sendsync.c
0.6.3 release
[onak.git] / sendsync.c
index 53ea713cafbd362b32bc484c49a501cd26c3306a..429b8f712998b3012c720687bcc74c74608d0e44 100644 (file)
@@ -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 <https://www.gnu.org/licenses/>.
  */
 
 #include <stdio.h>
 #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);
 }
 
 /**