Merge "Bug 3330205 Put blanks and zeroes in const area"
This commit is contained in:
@@ -203,9 +203,9 @@ vfprintf(FILE *fp, const char *fmt0, __va_list ap)
|
||||
* below longer.
|
||||
*/
|
||||
#define PADSIZE 16 /* pad chunk size */
|
||||
static char blanks[PADSIZE] =
|
||||
static const char blanks[PADSIZE] =
|
||||
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '};
|
||||
static char zeroes[PADSIZE] =
|
||||
static const char zeroes[PADSIZE] =
|
||||
{'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0'};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user