From: Heng Li Date: Wed, 24 Jul 2013 15:19:38 +0000 (-0400) Subject: removed incorrect comments X-Git-Tag: spawn-final~18 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=57dc7b07c9315ead4c106405c2e0968d8bbe2950;p=klib.git removed incorrect comments --- diff --git a/kstring.h b/kstring.h index 8671ba6..0e654cb 100644 --- a/kstring.h +++ b/kstring.h @@ -87,9 +87,6 @@ extern "C" { } #endif -/* Ensures that the string has space for at least SIZE bytes, and ensures that - * it is NUL-terminated if there is room. Thus ks_resize(&s,s.l+1) can be used - * to make sure that a kstring_t is both allocated and NUL-terminated. */ static inline int ks_resize(kstring_t *s, size_t size) { if (s->m < size) {