lseg - clean up endian bug.

This commit is contained in:
Kelvin Sherlock 2016-07-25 17:06:15 -04:00
parent 4fc03aab47
commit 6c1391d142
1 changed files with 5 additions and 5 deletions

10
LSeg.c
View File

@ -138,7 +138,7 @@ int readSegRec(int fd)
if ( *(cp++) == 0x3B && *(cp++) == 0x38 && *(cp++) == 0xE9 )
/* This is the preamble we're looking for! */
/* Next two bytes are size of local variables */
return *(int*)cp + base_size;
return le16dec(cp) + base_size;
else
return -1; /* Give up */
}
@ -247,7 +247,7 @@ void scanOMF(int fd, char *fname)
OMFhead header;
uint32_t off = 0l;
int kind;
int i;
//int i;
uint32_t eof;
char *bname;
@ -284,9 +284,9 @@ char *bname;
name[0] = header.LABLEN;
read(fd, name+1, header.LABLEN);
}
printf("%s",bname);
i = strlen(bname);
while (i++ < 20) putchar(' ');
printf("%-20s",bname);
//i = strlen(bname);
//while (i++ < 20) putchar(' ');
kind = header.KIND & 0x1F;
switch (kind) {