fix signed/unsigned comparison warning
authorRoyce Mitchell III <royce3@ev1.net>
Fri, 25 Nov 2005 19:12:04 +0000 (19:12 +0000)
committerRoyce Mitchell III <royce3@ev1.net>
Fri, 25 Nov 2005 19:12:04 +0000 (19:12 +0000)
svn path=/trunk/; revision=19567

reactos/tools/rsym.c

index caf229e..cbe09b7 100644 (file)
@@ -610,7 +610,7 @@ CreateOutputFile(FILE *OutFile, void *InData,
             {
               RosSymOffset = CurrentSectionHeader->PointerToRawData + CurrentSectionHeader->SizeOfRawData;
             }
-          if (Section == InRelocSectionIndex)
+          if (Section == (ULONG)InRelocSectionIndex)
             {
               OutRelocSection = CurrentSectionHeader;
             }