Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Jan 2017 23:56:46 +0000 (UTC)
From:      "Conrad E. Meyer" <cem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r311842 - head/sys/fs/cd9660
Message-ID:  <201701092356.v09NuknP058021@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701092356.v09NuknP058021>