PERFORCE change 155381 for review
Robert Watson
rwatson at FreeBSD.org
Sun Dec 28 07:51:41 PST 2008
http://perforce.freebsd.org/chv.cgi?CH=155381
Change 155381 by rwatson at 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;
More information about the p4-projects
mailing list