@@ -68,16 +68,16 @@ @property (readonly, nonatomic) OFString *fileName; /*! * The mode of the entry. */ -@property (readonly) uint32_t mode; +@property (readonly, nonatomic) uint32_t mode; /*! * The size of the file. */ -@property (readonly) uint64_t size; +@property (readonly, nonatomic) uint64_t size; /*! * The date of the last modification of the file. */ @property (readonly, nonatomic) OFDate *modificationDate; @@ -85,11 +85,11 @@ /*! * The type of the archive entry. * * See @ref of_tar_archive_entry_type_t. */ -@property (readonly) of_tar_archive_entry_type_t type; +@property (readonly, nonatomic) of_tar_archive_entry_type_t type; /*! * The file name of the target (for a hard link or symbolic link). */ @property (readonly, nonatomic) OFString *targetFileName; @@ -105,16 +105,16 @@ @property (readonly, nonatomic) OFString *group; /*! * The device major (if the file is a device). */ -@property (readonly) uint32_t deviceMajor; +@property (readonly, nonatomic) uint32_t deviceMajor; /*! * The device major (if the file is a device). */ -@property (readonly) uint32_t deviceMinor; +@property (readonly, nonatomic) uint32_t deviceMinor; - init OF_UNAVAILABLE; @end OF_ASSUME_NONNULL_END