aboutsummaryrefslogtreecommitdiff
path: root/xexamine.c
diff options
context:
space:
mode:
Diffstat (limited to 'xexamine.c')
-rw-r--r--xexamine.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/xexamine.c b/xexamine.c
index ec1e822..64ecb8b 100644
--- a/xexamine.c
+++ b/xexamine.c
@@ -358,11 +358,6 @@ int main(int argc, char **argv) {
while(xex_fread_seg(&seg, f)) {
segcount++;
- xex_check_seg(&seg);
- if(xex_errno) {
- xex_perror(filename);
- }
-
crc = 0;
crc32(seg.object, seg.len, &crc);
@@ -391,6 +386,11 @@ int main(int argc, char **argv) {
offset = ftell(f);
}
+ if(xex_errno) {
+ fprintf(stderr, SELF ": %s: %s\n",
+ filename, xex_strerror(xex_errno));
+ }
+
if(only_segment && (segcount < only_segment)) {
fprintf(stderr, SELF ": can't show segment %d, only %d segments in file.\n", only_segment, segcount);
return 1;