Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Dec 2008 15:51:39 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 155381 for review
Message-ID:  <200812281551.mBSFpdmV077441@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=155381

Change 155381 by rwatson@rwatson_cinnamon on 2008/12/28 15:51:35

	Prefer uint64_t to u_quad_t as it is a more portable integer
	type.

Affected files ...

.. //depot/projects/trustedbsd/openbsm/sys/bsm/audit.h#3 edit

Differences ...

==== //depot/projects/trustedbsd/openbsm/sys/bsm/audit.h#3 (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#2 $
+ * $P4: //depot/projects/trustedbsd/openbsm/sys/bsm/audit.h#3 $
  */
 
 #ifndef _BSM_AUDIT_H
@@ -279,8 +279,8 @@
  * Structure for the audit file statistics.
  */
 struct audit_fstat {
-	u_quad_t	af_filesz;
-	u_quad_t	af_currsz;
+	uint64_t	af_filesz;
+	uint64_t	af_currsz;
 };
 typedef	struct audit_fstat	au_fstat_t;
 



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