From 00c9cb1b22cc17c4db573e0e613a5f116ff0092e Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Wed, 25 Jan 2017 15:52:18 +0000 Subject: More work on the types. This commit builds but has errors. Rework src/headers entirely: build skalibs/types.h Convert skalibs/fmtscan.h types. Propagate changes until it builds. There are a lot of incompatible pointer issues remaining, those will be fixed with the buffer overhaul. --- src/libstddjb/netstring_append.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/libstddjb/netstring_append.c') diff --git a/src/libstddjb/netstring_append.c b/src/libstddjb/netstring_append.c index 9c14f49..88098a4 100644 --- a/src/libstddjb/netstring_append.c +++ b/src/libstddjb/netstring_append.c @@ -1,14 +1,15 @@ /* ISC license. */ -#include +#include +#include #include #include #include -int netstring_appendb (stralloc *sa, char const *s, unsigned int len) +int netstring_appendb (stralloc *sa, char const *s, size_t len) { - char fmt[UINT_FMT] ; - unsigned int n = uint_fmt(fmt, len) ; + char fmt[UINT64_FMT] ; + size_t n = uint64_fmt(fmt, len) ; if (!stralloc_readyplus(sa, len + n + 2)) return 0 ; fmt[n] = ':' ; byte_copy(sa->s + sa->len, n+1, fmt) ; -- cgit v1.2.3