From 1460ad53cca5c98a6d78aafa0a3735271bd5ebdc Mon Sep 17 00:00:00 2001 From: John van Groningen Date: Tue, 20 Jun 2006 15:28:30 +0000 Subject: use signed compare in is_special_file --- wfileIO3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wfileIO3.c b/wfileIO3.c index 596eb4b..a299c1b 100644 --- a/wfileIO3.c +++ b/wfileIO3.c @@ -63,7 +63,7 @@ struct file file_table[MAX_N_FILES]; static int number_of_files=FIRST_REAL_FILE; -#define is_special_file(f) ((size_t)(f)<(size_t)(&file_table[FIRST_REAL_FILE])) +#define is_special_file(f) ((CLEAN_INT)(f)<(CLEAN_INT)(&file_table[FIRST_REAL_FILE])) static char *clean_to_c_string (struct clean_string *cs) { -- cgit v1.2.3