PERFORCE change 155384 for review
    Robert Watson 
    rwatson at FreeBSD.org
       
    Sun Dec 28 08:05:55 PST 2008
    
    
  
http://perforce.freebsd.org/chv.cgi?CH=155384
Change 155384 by rwatson at rwatson_cinnamon_macosx on 2008/12/28 16:05:01
	Prefer u_int64_t to uint64_t for the build on Mac OS X, where
	the former can use sys/types.h but the latter requires
	inttypes.h.
Affected files ...
.. //depot/projects/trustedbsd/openbsm/sys/bsm/audit.h#4 edit
Differences ...
==== //depot/projects/trustedbsd/openbsm/sys/bsm/audit.h#4 (text+ko) ====
@@ -26,7 +26,7 @@
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
- * $P4: //depot/projects/trustedbsd/openbsm/sys/bsm/audit.h#3 $
+ * $P4: //depot/projects/trustedbsd/openbsm/sys/bsm/audit.h#4 $
  */
 
 #ifndef _BSM_AUDIT_H
@@ -279,8 +279,8 @@
  * Structure for the audit file statistics.
  */
 struct audit_fstat {
-	uint64_t	af_filesz;
-	uint64_t	af_currsz;
+	u_int64_t	af_filesz;
+	u_int64_t	af_currsz;
 };
 typedef	struct audit_fstat	au_fstat_t;
 
    
    
More information about the p4-projects
mailing list