diff options
author | 2013-05-31 14:30:51 +0000 | |
---|---|---|
committer | 2013-05-31 14:30:51 +0000 | |
commit | 9818487c779638cf0660c8557ab024e615da8520 (patch) | |
tree | 63ff8c50ba3ac6e6468f570822277396564e8dab | |
parent | New logic to accommodate the E5/C600 and 5719/5720 changes in PCI-E (diff) | |
download | wireguard-openbsd-9818487c779638cf0660c8557ab024e615da8520.tar.xz wireguard-openbsd-9818487c779638cf0660c8557ab024e615da8520.zip |
Unbreak after recent shutdown-hook removal.
-rw-r--r-- | sys/arch/macppc/dev/mesh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/mesh.c b/sys/arch/macppc/dev/mesh.c index 61975fd2ee3..a8c42b3034d 100644 --- a/sys/arch/macppc/dev/mesh.c +++ b/sys/arch/macppc/dev/mesh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mesh.c,v 1.30 2013/05/30 16:15:01 deraadt Exp $ */ +/* $OpenBSD: mesh.c,v 1.31 2013/05/31 14:30:51 mpi Exp $ */ /* $NetBSD: mesh.c,v 1.1 1999/02/19 13:06:03 tsubai Exp $ */ /*- @@ -383,7 +383,7 @@ mesh_activate(struct device *self, int act) struct mesh_softc *sc = (struct mesh_softc *)self; int ret = 0; - reg = config_activate_children(self, act); + ret = config_activate_children(self, act); switch (act) { case DVACT_POWERDOWN: |