svn commit: r224043 - head/sys/sys

Jung-uk Kim jkim at FreeBSD.org
Thu Jul 14 21:02:15 UTC 2011


Author: jkim
Date: Thu Jul 14 21:02:15 2011
New Revision: 224043
URL: http://svn.freebsd.org/changeset/base/224043

Log:
  Prefer uint64_t over u_int64_t.

Modified:
  head/sys/sys/timetc.h

Modified: head/sys/sys/timetc.h
==============================================================================
--- head/sys/sys/timetc.h	Thu Jul 14 21:00:26 2011	(r224042)
+++ head/sys/sys/timetc.h	Thu Jul 14 21:02:15 2011	(r224043)
@@ -47,7 +47,7 @@ struct timecounter {
 		 */
 	u_int 			tc_counter_mask;
 		/* This mask should mask off any unimplemented bits. */
-	u_int64_t		tc_frequency;
+	uint64_t		tc_frequency;
 		/* Frequency of the counter in Hz. */
 	char			*tc_name;
 		/* Name of the timecounter. */


More information about the svn-src-all mailing list