This commit is contained in:
Yuichi Nishiwaki 2015-05-30 20:05:04 +09:00
parent ce25121837
commit 617de67b94
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ int xfprintf(xFILE *stream, const char *fmt, ...) {
}
static int print_int(xFILE *stream, long x, int base) {
static char digits[] = "0123456789abcdef";
static const char digits[] = "0123456789abcdef";
char buf[20];
int i, c, neg;