diff --git a/ChangeLog b/ChangeLog index 79cdb07c..b42e290b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -59,6 +59,10 @@ CVS code - of 0 to get a string as long as we need is a nonportable GNU extension, and hence it won't work on non-GNU systems that don't define PATH_MAX. (DLR) +- rcfile.c: + parse_rcfile() + - Fix debugging message to display the long value of a flag + properly. (DLR) - utils.c: regexec_safe() - Rename to safe_regexec() for consistency. (DLR) diff --git a/src/rcfile.c b/src/rcfile.c index 377fb226..9d0be640 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -650,7 +650,7 @@ void parse_rcfile(FILE *rcstream) assert(FALSE); } #ifdef DEBUG - fprintf(stderr, "flag = %d\n", rcopts[i].flag); + fprintf(stderr, "flag = %ld\n", rcopts[i].flag); #endif } else if (rcopts[i].flag != 0) UNSET(rcopts[i].flag);