Increase size of help format buffer (#24093).

CVS patchset: 4450
CVS date: 2001/01/16 13:39:50
This commit is contained in:
jbj 2001-01-16 13:39:50 +00:00
parent 3e85ac2cd2
commit ef0d093f14
1 changed files with 1 additions and 1 deletions

2
rpm.c
View File

@ -259,7 +259,7 @@ static void printHelpLine(char * prefix, char * help) {
int lineLength = 79 - indentLength;
int helpLength = strlen(help);
char * ch;
char format[10];
char format[64];
fprintf(stdout, "%s - ", prefix);