Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30619
b: refs/heads/master
c: 6803dc0
h: refs/heads/master
i:
  30617: 4a0806c
  30615: e81d8c7
v: v3
  • Loading branch information
Sam Ravnborg committed Jun 24, 2006
1 parent 2894171 commit 5b70409
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 15fde6751886fd972a64ed65ba49db309919c504
refs/heads/master: 6803dc0ea85ad21b2cb3ec88decff5e27d7a390b
2 changes: 1 addition & 1 deletion trunk/scripts/genksyms/lex.c_shipped
Original file line number Diff line number Diff line change
Expand Up @@ -2023,7 +2023,7 @@ repeat:
break;

default:
abort();
exit(1);
}
fini:

Expand Down
2 changes: 1 addition & 1 deletion trunk/scripts/genksyms/lex.l
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ repeat:
break;
default:
abort();
exit(1);
}
fini:
Expand Down
6 changes: 3 additions & 3 deletions trunk/scripts/mod/mk_elfconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ main(int argc, char **argv)
printf("#define KERNEL_ELFCLASS ELFCLASS64\n");
break;
default:
abort();
exit(1);
}
switch (ei[EI_DATA]) {
case ELFDATA2LSB:
Expand All @@ -38,7 +38,7 @@ main(int argc, char **argv)
printf("#define KERNEL_ELFDATA ELFDATA2MSB\n");
break;
default:
abort();
exit(1);
}

if (sizeof(unsigned long) == 4) {
Expand All @@ -53,7 +53,7 @@ main(int argc, char **argv)
else if (memcmp(endian_test.c, "\x02\x01", 2) == 0)
printf("#define HOST_ELFDATA ELFDATA2LSB\n");
else
abort();
exit(1);

if ((strcmp(argv[1], "v850") == 0) || (strcmp(argv[1], "h8300") == 0))
printf("#define MODULE_SYMBOL_PREFIX \"_\"\n");
Expand Down
2 changes: 1 addition & 1 deletion trunk/scripts/mod/modpost.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ static void parse_elf(struct elf_info *info, const char *filename)
hdr = grab_file(filename, &info->size);
if (!hdr) {
perror(filename);
abort();
exit(1);
}
info->hdr = hdr;
if (info->size < sizeof(*hdr))
Expand Down

0 comments on commit 5b70409

Please sign in to comment.