diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-09-17 04:52:54 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-09-17 04:52:54 +0000 |
commit | 92650dc8fdb9f824ab967b34b3c634debbe89d02 (patch) | |
tree | 318d07b4e05ec1273fd0e9bed753a7df2008e6a9 | |
parent | f9118fbfb0a572f2b76e9d7453391b6382fe58b2 (diff) |
Fix a misaligned backslash
-rw-r--r-- | sys/kern/kern_timeout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c index b46c0a393b6..009720871d5 100644 --- a/sys/kern/kern_timeout.c +++ b/sys/kern/kern_timeout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_timeout.c,v 1.36 2013/08/03 06:47:15 guenther Exp $ */ +/* $OpenBSD: kern_timeout.c,v 1.37 2013/09/17 04:52:53 guenther Exp $ */ /* * Copyright (c) 2001 Thomas Nordin <nordin@openbsd.org> * Copyright (c) 2000-2001 Artur Grabowski <art@openbsd.org> @@ -60,7 +60,7 @@ struct circq timeout_todo; /* Worklist */ #define BUCKET(rel, abs) \ (timeout_wheel[ \ - ((rel) <= (1 << (2*WHEELBITS))) \ + ((rel) <= (1 << (2*WHEELBITS))) \ ? ((rel) <= (1 << WHEELBITS)) \ ? MASKWHEEL(0, (abs)) \ : MASKWHEEL(1, (abs)) + WHEELSIZE \ |