From: Jim Meyering Date: Sat, 7 Dec 1996 19:12:44 +0000 (+0000) Subject: (init_header): Fix typo: `cons tchar' -> `const char'. From Roland. X-Git-Tag: TEXTUTILS-1_19q~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ccd71dd94a8d3978e6b340155100d4ab2416e12;p=thirdparty%2Fcoreutils.git (init_header): Fix typo: `cons tchar' -> `const char'. From Roland. --- diff --git a/src/pr.c b/src/pr.c index 024c4f8bf2..3ac39ae166 100644 --- a/src/pr.c +++ b/src/pr.c @@ -1382,7 +1382,7 @@ init_header (char *filename, int desc) { size_t t_buf_size = 15; - cons tchar *fmt = "%y-%m-%d %H:%M"; /* date/time short format */ + const char *fmt = "%y-%m-%d %H:%M"; /* date/time short format */ t_buf = (char *) xmalloc (t_buf_size); tmptr = localtime (&st.st_mtime);