]> git.saurik.com Git - apple/boot.git/blobdiff - i386/nasm/outas86.c
boot-132.tar.gz
[apple/boot.git] / i386 / nasm / outas86.c
index 553920df2dfe0ebe1e3d1c4452229a5d204e66c8..1c6f2e3e76a0fc1a67a6e71a41888c353813390a 100644 (file)
@@ -373,7 +373,7 @@ static void as86_write(void) {
      */
     symlen = 0;
     saa_rewind (syms);
-    for (i = 0; i < nsyms; i++) {
+    for (i = 0; i < (int)nsyms; i++) {
        struct Symbol *sym = saa_rstruct (syms);
        if (sym->segment == SECT_BSS)
            sym->segment = SECT_DATA, sym->value += sdata.len;
@@ -427,7 +427,7 @@ static void as86_write(void) {
      * Write the symbol table.
      */
     saa_rewind (syms);
-    for (i = 0; i < nsyms; i++) {
+    for (i = 0; i < (int)nsyms; i++) {
        struct Symbol *sym = saa_rstruct (syms);
        fwriteshort (sym->strpos, as86fp);
        fwriteshort (sym->flags, as86fp);