From 4cf95839f229dab1cc0413bc7403fe3d1c804af3 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Tue, 16 Nov 1999 04:30:53 +0100 Subject: [PATCH] Fixed bogus format string in an error message. Rev: src/preprocessor.h:1.14 --- src/preprocessor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/preprocessor.h b/src/preprocessor.h index 9f5e967dd8..1ae62d1c33 100644 --- a/src/preprocessor.h +++ b/src/preprocessor.h @@ -1,5 +1,5 @@ /* - * $Id: preprocessor.h,v 1.13 1999/09/17 22:46:20 hubbe Exp $ + * $Id: preprocessor.h,v 1.14 1999/11/16 03:30:53 mast Exp $ * * Preprocessor template. * Based on cpp.c 1.45 @@ -892,7 +892,7 @@ static INT32 lower_cpp(struct cpp *this, { char buffer[1024]; sprintf(buffer, - "Too few arguments to macro %950s, expected %d.", + "Too few arguments to macro %.950s, expected %d.", d->link.s->str, d->args); cpp_error(this, buffer); break; -- GitLab