Remove unnecessary pointer dereference.

This commit is contained in:
Manuel Novoa III 2003-08-13 12:11:33 +00:00
parent 9a9f6777e9
commit 5b3c05637d

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';