From 92bee588beae667b7338d50a8e6cd5baed4e0d72 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 20 Oct 1994 11:52:15 +0000 Subject: [PATCH] void LoadChar --- modules/src/input/inp_pkg.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/src/input/inp_pkg.spec b/modules/src/input/inp_pkg.spec index 83561758..c349fa89 100644 --- a/modules/src/input/inp_pkg.spec +++ b/modules/src/input/inp_pkg.spec @@ -20,7 +20,7 @@ /* INPUT PRIMITIVES */ -#define LoadChar(dest) ((dest = *_ipp++) || (dest = loadbuf())) +#define LoadChar(dest) ((void)((dest = *_ipp++) || (dest = loadbuf()))) #define PushBack() (--_ipp) #define ChPushBack(ch) (*--_ipp = (ch))