summaryrefslogtreecommitdiffstats
path: root/base/rand_util_posix.cc
diff options
context:
space:
mode:
authordeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-14 23:28:29 +0000
committerdeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-14 23:28:29 +0000
commitba990126c119b5df777b9afcdc3d216cb9f21e5b (patch)
tree50025bd522a070efa235fff202040a95786323aa /base/rand_util_posix.cc
parentc7166029d29e0f702a0ec4c3efc9aa4319de35cb (diff)
downloadchromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.zip
chromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.tar.gz
chromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.tar.bz2
RandUInt -> RandUint to match the style of other Uint functions.
Review URL: http://codereview.chromium.org/10767 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/rand_util_posix.cc')
-rw-r--r--base/rand_util_posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/rand_util_posix.cc b/base/rand_util_posix.cc
index 392cde5..e0b4257 100644
--- a/base/rand_util_posix.cc
+++ b/base/rand_util_posix.cc
@@ -12,7 +12,7 @@
namespace base {
-uint64 RandUInt64() {
+uint64 RandUint64() {
uint64 number;
int urandom_fd = open("/dev/urandom", O_RDONLY);