Jean Wolter writes:
[oweals/busybox.git] / coreutils / cal.c
index 9dbe2c44bb1c522a28d98bc9a03c75851b50405a..786156253a306a6397a271a4cd8fa0ddbc3aa9c3 100644 (file)
@@ -1,8 +1,6 @@
 /*
  * Calendar implementation for busybox
  *
- * Copyright (C) 2003 by Manuel Novoa III   (mjn3@codepoet.org)
- *
  * See original copyright at the end of this file
  *
  * This program is free software; you can redistribute it and/or modify
@@ -326,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';