From cecd0d24015e677572d09fdd8f278beec46719ad Mon Sep 17 00:00:00 2001 From: vda Date: Wed, 6 Sep 2006 19:02:46 +0000 Subject: removed a lot of trailing \n in bb_msg() calls. It is added automatically by function itself. git-svn-id: svn://busybox.net/trunk/busybox@16059 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- modutils/insmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modutils') diff --git a/modutils/insmod.c b/modutils/insmod.c index 3aabadd26..e57dd06dd 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -3562,7 +3562,7 @@ static int obj_load_progbits(FILE * fp, struct obj_file* f, char* imagebase) sec->contents = imagebase + (sec->header.sh_addr - base); fseek(fp, sec->header.sh_offset, SEEK_SET); if (fread(sec->contents, sec->header.sh_size, 1, fp) != 1) { - bb_error_msg("error reading ELF section data: %s\n", strerror(errno)); + bb_perror_msg("error reading ELF section data"); return 0; } -- cgit v1.2.3-55-g6feb