The error functions take constant pointers to strings for their format.

This commit is contained in:
Juli Mallett 2002-06-12 04:11:01 +00:00
parent 73dca2078d
commit 22c26d85e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98136
5 changed files with 10 additions and 10 deletions

View File

@ -1095,7 +1095,7 @@ Boolean
Job_CheckCommands(gn, abortProc)
GNode *gn; /* The target whose commands need
* verifying */
void (*abortProc)(char *, ...);
void (*abortProc)(const char *, ...);
/* Function to abort with message */
{
if (OP_NOP(gn->type) && Lst_IsEmpty(gn->commands) &&

View File

@ -221,7 +221,7 @@ extern Boolean jobFull; /* Non-zero if no more jobs should/will start*/
void Job_Touch(GNode *, Boolean);
Boolean Job_CheckCommands(GNode *, void (*abortProc )(char *, ...));
Boolean Job_CheckCommands(GNode *, void (*abortProc)(const char *, ...));
void Job_CatchChildren(Boolean);
void Job_CatchOutput(void);
void Job_Make(GNode *);

View File

@ -1110,7 +1110,7 @@ Cmd_Exec(cmd, err)
*/
/* VARARGS */
void
Error(char *fmt, ...)
Error(const char *fmt, ...)
{
va_list ap;
@ -1134,7 +1134,7 @@ Error(char *fmt, ...)
*/
/* VARARGS */
void
Fatal(char *fmt, ...)
Fatal(const char *fmt, ...)
{
va_list ap;
@ -1165,7 +1165,7 @@ Fatal(char *fmt, ...)
*/
/* VARARGS */
void
Punt(char *fmt, ...)
Punt(const char *fmt, ...)
{
va_list ap;

View File

@ -65,9 +65,9 @@ void For_Run(void);
void Main_ParseArgLine(char *);
int main(int, char **);
char *Cmd_Exec(char *, char **);
void Error(char *, ...);
void Fatal(char *, ...);
void Punt(char *, ...);
void Error(const char *, ...);
void Fatal(const char *, ...);
void Punt(const char *, ...);
void DieHorribly(void);
int PrintAddr(void *, void *);
void Finish(int);
@ -81,7 +81,7 @@ void enomem(void);
int eunlink(const char *);
/* parse.c */
void Parse_Error(int, char *, ...);
void Parse_Error(int, const char *, ...);
Boolean Parse_AnyExport(void);
Boolean Parse_IsVar(char *);
void Parse_DoVar(char *, GNode *);

View File

@ -306,7 +306,7 @@ ParseFindKeyword (str)
*/
/* VARARGS */
void
Parse_Error(int type, char *fmt, ...)
Parse_Error(int type, const char *fmt, ...)
{
va_list ap;