diff options
author | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-24 23:46:54 +0200 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-24 23:46:54 +0200 |
commit | 6803dc0ea85ad21b2cb3ec88decff5e27d7a390b (patch) | |
tree | e4041b76ed21bd835018be3e8bbc5e2c1d76ce74 /scripts/mod/modpost.c | |
parent | 15fde6751886fd972a64ed65ba49db309919c504 (diff) | |
download | op-kernel-dev-6803dc0ea85ad21b2cb3ec88decff5e27d7a390b.zip op-kernel-dev-6803dc0ea85ad21b2cb3ec88decff5e27d7a390b.tar.gz |
kbuild: replace abort() with exit(1)
We have had no use of the coredump file for a long time.
So just exit(1) and avoid coredumping.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/mod/modpost.c')
-rw-r--r-- | scripts/mod/modpost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 7e22689..0dd1617 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -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)) |