diff options
author | des <des@FreeBSD.org> | 2001-07-05 22:34:11 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-07-05 22:34:11 +0000 |
commit | 7e712a31e77dc026baf6f693de748b9e8bad3a7a (patch) | |
tree | 0235109f5981cc02c0f198beff43b5190e77e6a9 /share/man | |
parent | a843b4b30a947524661c7a5808bf4a3771775e07 (diff) | |
download | FreeBSD-src-7e712a31e77dc026baf6f693de748b9e8bad3a7a.zip FreeBSD-src-7e712a31e77dc026baf6f693de748b9e8bad3a7a.tar.gz |
Constify the format string.
Submitted by: Mike Barcroft <mike@q9media.com>
Forgotten by: des
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man9/sbuf.9 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man9/sbuf.9 b/share/man/man9/sbuf.9 index 69ed300..9c3c81f 100644 --- a/share/man/man9/sbuf.9 +++ b/share/man/man9/sbuf.9 @@ -68,7 +68,7 @@ .Ft int .Fn sbuf_cpy "struct sbuf *s" "const char *str" .Ft int -.Fn sbuf_printf "struct sbuf *s" "char *fmt" "..." +.Fn sbuf_printf "struct sbuf *s" "const char *fmt" "..." .Ft int .Fn sbuf_putc "struct sbuf *s" "int c" .Ft int |