Remove unnecessary pointer dereference.

1_00_stable_10817
Manuel Novoa III 2003-08-13 12:11:33 +00:00
parent 9a9f6777e9
commit 5b3c05637d
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ static char *build_row(char *p, int *dp)
do {
if ((day = *dp++) != SPACE) {
if (julian) {
*++p;
++p;
if (day >= 100) {
*p = '0';
p[-1] = (day / 100) + '0';