mirror of https://github.com/mirror/busybox.git
Remove unnecessary pointer dereference.
parent
9a9f6777e9
commit
5b3c05637d
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue