From 914fbac0f138e143f6ca9bf219964c4b254584d2 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 30 Jul 2005 23:24:50 +0000 Subject: [PATCH] Removed "U" unsigned suffix: caused problems with older compilers and is not necessary for this constants. [from HEAD] --- src/ngircd/conn.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index e1f34f9f..e7351d7f 100644 --- a/src/ngircd/conn.h +++ b/src/ngircd/conn.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: conn.h,v 1.35 2005/06/12 16:28:55 alex Exp $ + * $Id: conn.h,v 1.35.2.1 2005/07/30 23:24:50 alex Exp $ * * Connection management (header) */ @@ -21,11 +21,11 @@ #include /* for time_t, see below */ -#define CONN_ISCLOSING 1U /* Conn_Close() already called */ -#define CONN_ISCONNECTING 2U /* connect() in progress */ +#define CONN_ISCLOSING 1 /* Conn_Close() already called */ +#define CONN_ISCONNECTING 2 /* connect() in progress */ #ifdef ZLIB -#define CONN_ZIP 4U /* zlib compressed link */ +#define CONN_ZIP 4 /* zlib compressed link */ #endif -- 2.39.2