moreLabel is always used with one argument

This commit is contained in:
Peter De Wachter 2016-01-23 17:42:40 +01:00
parent ad1aa82bcd
commit 0e03424ec1
2 changed files with 3 additions and 5 deletions

View File

@ -543,13 +543,11 @@ moreText(format, arg1, arg2, arg3)
}
void
moreLabel(format, arg1, arg2, arg3)
moreLabel(format, arg1)
char *format;
int arg1;
int arg2;
int arg3;
{
sprintf(labelStringPtr, format, arg1, arg2, arg3);
sprintf(labelStringPtr, format, arg1);
labelStringPtr = labelString + strlen(labelString);
}

View File

@ -22,7 +22,7 @@ bool labeledLine();
void addText(char *buffer, char **bufferPtr, char *format, int arg1, int arg2, int arg3);
void moreTextOptional(char *buffer, char **bufferPtr, char *format, int arg1, int arg2, int arg3);
void moreText(char *format, int arg1, int arg2, int arg3);
void moreLabel(char *format, int arg1, int arg2, int arg3);
void moreLabel(char *format, int arg1);
void startLine();
void endLine();
void flushExpressionString();