summaryrefslogtreecommitdiff
path: root/zwgc/xmark.c
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1989-11-09 09:56:15 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1989-11-09 09:56:15 +0000
commit2edaa0ba7d83dadfcb21e2e53eb3454a831a47d4 (patch)
treebe0a4d21f9ffc0311608143b0619c3a4a12a4a11 /zwgc/xmark.c
parent2e539a9296187e31a688aba30654b591bcc4ecfd (diff)
fix ambiguous assign/decrement problems
Diffstat (limited to 'zwgc/xmark.c')
-rw-r--r--zwgc/xmark.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/zwgc/xmark.c b/zwgc/xmark.c
index 678765b..790c5bf 100644
--- a/zwgc/xmark.c
+++ b/zwgc/xmark.c
@@ -13,7 +13,7 @@
*/
#if (!defined(lint) && !defined(SABER))
-static char rcsid_xmark_c[] = "$Header$";
+static char rcsid_xmark_c[] = "$Id$";
#endif
#include <zephyr/mit-copyright.h>
@@ -276,12 +276,12 @@ void xmarkClear()
oldpixel[1]=markpixel[1];
oldgram=markgram;
- markblock[0]=-1;
- markblock[1]=-1;
- markchar[0]=-1;
- markchar[1]=-1;
- markpixel[0]=-1;
- markpixel[1]=-1;
+ markblock[0] = -1;
+ markblock[1] = -1;
+ markchar[0] = -1;
+ markchar[1] = -1;
+ markpixel[0] = -1;
+ markpixel[1] = -1;
markgram=NULL;
}