1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-24 16:10:11 +00:00

cd9660: typedef cd_ino_t in preference to #define

Suggested by:	kib@
This commit is contained in:
Conrad Meyer 2017-01-09 23:56:45 +00:00
parent d5fadb019e
commit f7da1444fd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=311842

View File

@ -222,7 +222,7 @@ enum ISO_FTYPE { ISO_FTYPE_DEFAULT, ISO_FTYPE_9660, ISO_FTYPE_RRIP,
/*
* When ino_t becomes 64-bit, we can remove this definition in favor of ino_t.
*/
#define cd_ino_t uint64_t
typedef __uint64_t cd_ino_t;
struct iso_mnt {
uint64_t im_flags;