From de1deaf0bde9c0e67932420117caeb390f8ead98 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Thu, 14 Nov 2013 22:03:30 +0800 Subject: use oldstyle comments --- random.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'random.c') diff --git a/random.c b/random.c index 6743654..cc448ec 100644 --- a/random.c +++ b/random.c @@ -225,8 +225,8 @@ void seedrandom() { pid = getpid(); sha1_process(&hs, (void*)&pid, sizeof(pid)); - // gettimeofday() doesn't completely fill out struct timeval on - // OS X (10.8.3), avoid valgrind warnings by clearing it first + /* gettimeofday() doesn't completely fill out struct timeval on + OS X (10.8.3), avoid valgrind warnings by clearing it first */ memset(&tv, 0x0, sizeof(tv)); gettimeofday(&tv, NULL); sha1_process(&hs, (void*)&tv, sizeof(tv)); -- cgit v1.2.3