diff options
author | archie <archie@FreeBSD.org> | 2002-08-22 21:24:01 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 2002-08-22 21:24:01 +0000 |
commit | 7a233d4c9f8562bf331fa9b7d4d1f649521fb602 (patch) | |
tree | 2fc5ad56a57cb03d56c0aa0af0f4c9ba2c7bb631 /sys/dev/twe/twe.c | |
parent | 7995682a2f9ee27c40a0794821e01853508b55c3 (diff) | |
download | FreeBSD-src-7a233d4c9f8562bf331fa9b7d4d1f649521fb602.zip FreeBSD-src-7a233d4c9f8562bf331fa9b7d4d1f649521fb602.tar.gz |
Replace (ab)uses of "NULL" where "0" is really meant.
Diffstat (limited to 'sys/dev/twe/twe.c')
-rw-r--r-- | sys/dev/twe/twe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/twe/twe.c b/sys/dev/twe/twe.c index 75c0808..43df8e9 100644 --- a/sys/dev/twe/twe.c +++ b/sys/dev/twe/twe.c @@ -824,7 +824,7 @@ twe_init_connection(struct twe_softc *sc, int mode) /* get a command */ if (twe_get_request(sc, &tr)) - return(NULL); + return(0); /* build the command */ cmd = &tr->tr_command; |