diff options
author | 2010-08-20 02:34:15 +0000 | |
---|---|---|
committer | 2010-08-20 02:34:15 +0000 | |
commit | c73658852296b3a7932805e314d90edc19bf169c (patch) | |
tree | e388ddab07f7c7608208618e329743257e6a9797 | |
parent | Implement a simple, consistent user interface for error handling. (diff) | |
download | wireguard-openbsd-c73658852296b3a7932805e314d90edc19bf169c.tar.xz wireguard-openbsd-c73658852296b3a7932805e314d90edc19bf169c.zip |
fix an annoying indentation glitch
-rw-r--r-- | sys/dev/isa/pcppi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/isa/pcppi.c b/sys/dev/isa/pcppi.c index 74582d37c4f..f7b4ff070af 100644 --- a/sys/dev/isa/pcppi.c +++ b/sys/dev/isa/pcppi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcppi.c,v 1.9 2010/07/31 16:04:50 miod Exp $ */ +/* $OpenBSD: pcppi.c,v 1.10 2010/08/20 02:34:15 deraadt Exp $ */ /* $NetBSD: pcppi.c,v 1.1 1998/04/15 20:26:18 drochner Exp $ */ /* @@ -179,7 +179,8 @@ pcppi_attach(parent, self, aux) #endif pa.pa_cookie = sc; - while (config_found(self, &pa, 0)); + while (config_found(self, &pa, 0)) + ; } void |