diff options
Diffstat (limited to 'bfd/aout-target.h')
-rw-r--r-- | bfd/aout-target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/aout-target.h b/bfd/aout-target.h index 2f3d5ea..99a82bb 100644 --- a/bfd/aout-target.h +++ b/bfd/aout-target.h @@ -180,7 +180,7 @@ MY (object_p) (bfd *abfd) #ifndef S_IXUSR #define S_IXUSR 0100 /* Execute by owner. */ #endif - if (stat(abfd->filename, &buf) == 0 && (buf.st_mode & S_IXUSR)) + if (stat (abfd->filename, &buf) == 0 && (buf.st_mode & S_IXUSR)) abfd->flags |= EXEC_P; } #endif /* ENTRY_CAN_BE_ZERO */ |