From owner-p4-projects@FreeBSD.ORG Sun Dec 28 16:05:55 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 4BC8B1065678; Sun, 28 Dec 2008 16:05:55 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FE56106564A for ; Sun, 28 Dec 2008 16:05:55 +0000 (UTC) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EEBEC8FC1B for ; Sun, 28 Dec 2008 16:05:54 +0000 (UTC) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id mBSG5s8x079566 for ; Sun, 28 Dec 2008 16:05:54 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id mBSG5sV7079564 for perforce@freebsd.org; Sun, 28 Dec 2008 16:05:54 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sun, 28 Dec 2008 16:05:54 GMT Message-Id: <200812281605.mBSG5sV7079564@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Cc: Subject: PERFORCE change 155384 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Dec 2008 16:05:55 -0000 http://perforce.freebsd.org/chv.cgi?CH=155384 Change 155384 by rwatson@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;