Date: Thu, 14 Jul 2011 21:02:15 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r224043 - head/sys/sys Message-ID: <201107142102.p6EL2FQd045815@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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. */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107142102.p6EL2FQd045815>