svn commit: r311842 - head/sys/fs/cd9660
Conrad E. Meyer
cem at FreeBSD.org
Mon Jan 9 23:56:47 UTC 2017
Author: cem
Date: Mon Jan 9 23:56:45 2017
New Revision: 311842
URL: https://svnweb.freebsd.org/changeset/base/311842
Log:
cd9660: typedef cd_ino_t in preference to #define
Suggested by: kib@
Modified:
head/sys/fs/cd9660/iso.h
Modified: head/sys/fs/cd9660/iso.h
==============================================================================
--- head/sys/fs/cd9660/iso.h Mon Jan 9 23:51:31 2017 (r311841)
+++ head/sys/fs/cd9660/iso.h Mon Jan 9 23:56:45 2017 (r311842)
@@ -222,7 +222,7 @@ enum ISO_FTYPE { ISO_FTYPE_DEFAULT, ISO_
/*
* 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;
More information about the svn-src-all
mailing list