From e8ffdfeb8d8a1f2066bbc939ebfe1f23e670fa95 Mon Sep 17 00:00:00 2001 From: panne Date: Fri, 26 Sep 2003 12:12:35 +0000 Subject: [PATCH] [project @ 2003-09-26 12:12:35 by panne] Warning police --- ghc/rts/RtsStartup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/rts/RtsStartup.c b/ghc/rts/RtsStartup.c index e7da54f..edbf88a 100644 --- a/ghc/rts/RtsStartup.c +++ b/ghc/rts/RtsStartup.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsStartup.c,v 1.77 2003/09/25 15:14:41 panne Exp $ + * $Id: RtsStartup.c,v 1.78 2003/09/26 12:12:35 panne Exp $ * * (c) The GHC Team, 1998-2002 * @@ -81,14 +81,14 @@ static void *saved_termios[3] = {NULL,NULL,NULL}; void* __hscore_get_saved_termios(int fd) { - return (0 <= fd && fd < sizeof(saved_termios) / sizeof(*saved_termios)) ? + return (0 <= fd && fd < (int)(sizeof(saved_termios) / sizeof(*saved_termios))) ? saved_termios[fd] : NULL; } void __hscore_set_saved_termios(int fd, void* ts) { - if (0 <= fd && fd < sizeof(saved_termios) / sizeof(*saved_termios)) { + if (0 <= fd && fd < (int)(sizeof(saved_termios) / sizeof(*saved_termios))) { saved_termios[fd] = ts; } } -- 1.7.10.4