This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] config/tc-ppc.c warning fix.


Hi!

This fixes a warning.

gas/ChangeLog

2002-10-12  Elias Athanasopoulos  <eathan@otenet.gr>

	* config/tc-ppc.c (ppc_cleanup): Make 'i' unsigned int. Warning fix.


--- tc-ppc.c.orig	Sat Oct 12 12:50:57 2002
+++ tc-ppc.c	Sat Oct 12 12:51:34 2002
@@ -1323,7 +1323,7 @@ ppc_cleanup ()
     asection *seg = now_seg;
     subsegT subseg = now_subseg;
     asection *apuinfo_secp = (asection *) NULL;
-    int i;
+    unsigned int i;
 
     /* Create the .PPC.EMB.apuinfo section.  */
     apuinfo_secp = subseg_new (".PPC.EMB.apuinfo", 0);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]