From 1fea8b2d2fc76a12204ae067b47a9db52b2d58f9 Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Mon, 17 Feb 2020 20:08:07 -0500 Subject: [PATCH] KA10: Fixed compiler warnings. --- PDP10/kx10_dpy.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PDP10/kx10_dpy.c b/PDP10/kx10_dpy.c index 3efebae..a950a39 100644 --- a/PDP10/kx10_dpy.c +++ b/PDP10/kx10_dpy.c @@ -429,11 +429,11 @@ const char *wcnsls_description (DEVICE *dptr) * (four 9-bit bytes) */ /* bits inside the bytes */ -#define CCW 0400 /* counter clockwise (L) */ -#define CW 0200 /* clockwise (R) */ -#define THRUST 0100 -#define HYPER 040 -#define FIRE 020 +#define CCW 0400LL /* counter clockwise (L) */ +#define CW 0200LL /* clockwise (R) */ +#define THRUST 0100LL +#define HYPER 040LL +#define FIRE 020LL /* shift values for the players' bytes */ #define UR 0 /* upper right: enterprise "top plug" */