From c0119ac53405d6aff5bd002b46631fde9b16f500 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 28 Oct 1994 17:03:06 +0000 Subject: [PATCH] . --- src/ls.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ls.c b/src/ls.c index 1d5348e661..ed9bf8f132 100644 --- a/src/ls.c +++ b/src/ls.c @@ -81,6 +81,7 @@ #ifndef STDC_HEADERS char *ctime (); time_t time (); +void free (); #endif void mode_string (); @@ -1749,7 +1750,7 @@ quote_filename (p, quoted_length) { char buf[5]; sprintf (buf, "\\%03o", (unsigned int) c); - q = stpcpy (p, buf); + q = stpcpy (q, buf); } } } -- 2.47.3