From fabf40b3b3c9f37930aa99e40771a069a9c94adf Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Sat, 28 Nov 2009 14:54:12 +0000 Subject: Sync OpenBSD patchset 569: Tidy up various bits of the paste code, make the data buffer char * and add comments. --- cmd-list-buffers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd-list-buffers.c') diff --git a/cmd-list-buffers.c b/cmd-list-buffers.c index eb5d75dc..287736ab 100644 --- a/cmd-list-buffers.c +++ b/cmd-list-buffers.c @@ -1,4 +1,4 @@ -/* $Id: cmd-list-buffers.c,v 1.13 2009-11-14 17:56:39 tcunha Exp $ */ +/* $Id: cmd-list-buffers.c,v 1.14 2009-11-28 14:54:12 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -63,7 +63,7 @@ cmd_list_buffers_exec(struct cmd *self, struct cmd_ctx *ctx) strvisx(tmp, pb->data, len, VIS_OCTAL|VIS_TAB|VIS_NL); /* - * If the first 50 characterswere encoded as a longer string, + * If the first 50 characters were encoded as a longer string, * or there is definitely more data, add "...". */ if (size > 50 || strlen(tmp) > 50) { -- cgit