mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-25 12:49:54 +00:00
Remove unnecessary pointer dereference.
This commit is contained in:
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
Block a user