From 758f0b023c410a58dd8450a6b6b7da94b3d17f37 Mon Sep 17 00:00:00 2001 From: mjn3 Date: Wed, 13 Aug 2003 12:11:33 +0000 Subject: Remove unnecessary pointer dereference. git-svn-id: svn://busybox.net/trunk/busybox@7203 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/cal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreutils/cal.c b/coreutils/cal.c index a50f54db9..786156253 100644 --- a/coreutils/cal.c +++ b/coreutils/cal.c @@ -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'; -- cgit v1.2.3-55-g6feb