From 58385085e2331c5bf6df102c90d632ee4d78dba8 Mon Sep 17 00:00:00 2001
From: Martin Nilsson <mani@lysator.liu.se>
Date: Mon, 1 Jan 2007 05:51:03 +0100
Subject: [PATCH] id_flags are compared with unsigned.

Rev: src/program.h:1.227
---
 src/program.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/program.h b/src/program.h
index d4d3fe0e1b..315811c0bf 100644
--- a/src/program.h
+++ b/src/program.h
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: program.h,v 1.226 2006/07/09 15:02:32 marcus Exp $
+|| $Id: program.h,v 1.227 2007/01/01 04:51:03 nilsson Exp $
 */
 
 #ifndef PROGRAM_H
@@ -316,7 +316,7 @@ struct reference
   unsigned INT16 identifier_offset;
 
   /* ID_* flags - static, private etc.. */
-  INT16 id_flags;
+  unsigned INT16 id_flags;
 };
 
 /* Magic value used as identifier reference integer to refer to this. */
-- 
GitLab