diff options
author | 2001-12-17 23:13:41 +0000 | |
---|---|---|
committer | 2001-12-17 23:13:41 +0000 | |
commit | e13e1beb375f95a26bba940101b09aad2fc7a9ba (patch) | |
tree | 6fda6bf24d53cd1094c1aa3efafc79c8b7d2ed5f | |
parent | Add missing sigaction() call from last commit (diff) | |
download | wireguard-openbsd-e13e1beb375f95a26bba940101b09aad2fc7a9ba.tar.xz wireguard-openbsd-e13e1beb375f95a26bba940101b09aad2fc7a9ba.zip |
Initialize variable before use. ok fgs@
-rw-r--r-- | sys/dev/ic/ncr53c9x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ncr53c9x.c b/sys/dev/ic/ncr53c9x.c index aefb82b5c5c..71801c15489 100644 --- a/sys/dev/ic/ncr53c9x.c +++ b/sys/dev/ic/ncr53c9x.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr53c9x.c,v 1.10 2001/09/27 04:01:42 jason Exp $ */ +/* $OpenBSD: ncr53c9x.c,v 1.11 2001/12/17 23:13:41 nordin Exp $ */ /* $NetBSD: ncr53c9x.c,v 1.56 2000/11/30 14:41:46 thorpej Exp $ */ /* @@ -2711,7 +2711,7 @@ ncr53c9x_abort(sc, ecb) ecb->flags |= ECB_ABORT; if (ecb == sc->sc_nexus) { - int timeout; + int timeout = ecb->timeout; /* * If we're still selecting, the message will be scheduled |