diff options
author | 2014-07-12 19:47:38 +0000 | |
---|---|---|
committer | 2014-07-12 19:47:38 +0000 | |
commit | 7217c75eb0ae6e95ab292c5600dcf5818a42372a (patch) | |
tree | 655b84ca693c7292d425d2aa708de7885e7ce516 | |
parent | Provide ssl_version_string() function, which uses one of those modern C (diff) | |
download | wireguard-openbsd-7217c75eb0ae6e95ab292c5600dcf5818a42372a.tar.xz wireguard-openbsd-7217c75eb0ae6e95ab292c5600dcf5818a42372a.zip |
rename variable to better indicate it's meaning
-rw-r--r-- | sys/arch/octeon/stand/boot/clock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/octeon/stand/boot/clock.c b/sys/arch/octeon/stand/boot/clock.c index 46345fef00b..acccf606ecf 100644 --- a/sys/arch/octeon/stand/boot/clock.c +++ b/sys/arch/octeon/stand/boot/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.2 2013/06/05 02:45:37 jasper Exp $ */ +/* $OpenBSD: clock.c,v 1.3 2014/07/12 19:47:38 jasper Exp $ */ /* * Copyright (c) 2013 Jasper Lievisse Adriaanse <jasper@openbsd.org> @@ -24,9 +24,9 @@ #define DELAY_MULTIPLIER 10000 void -delay(int ns) +delay(int ms) { - volatile int i = ns * DELAY_MULTIPLIER; + volatile int i = ms * DELAY_MULTIPLIER; for (; --i;) ; } |