From a2eec6051f81b272521da3001f52d1e43abde6df Mon Sep 17 00:00:00 2001 From: "Vladimir N. Oleynik" Date: Sat, 15 Oct 2005 13:45:32 +0000 Subject: RESERVE_CONFIG_BUFFER --> bb_common_bufsiz1 --- coreutils/date.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'coreutils/date.c') diff --git a/coreutils/date.c b/coreutils/date.c index 6593df9..e9ec510 100644 --- a/coreutils/date.c +++ b/coreutils/date.c @@ -282,10 +282,8 @@ int date_main(int argc, char **argv) { /* Print OUTPUT (after ALL that!) */ - RESERVE_CONFIG_BUFFER(t_buff, 201); - strftime(t_buff, 200, date_fmt, &tm_time); - puts(t_buff); - RELEASE_CONFIG_BUFFER(t_buff); + strftime(bb_common_bufsiz1, 200, date_fmt, &tm_time); + puts(bb_common_bufsiz1); } return EXIT_SUCCESS; -- cgit v1.1