From: Joerg Sonnenberger Date: Thu, 26 Feb 2004 14:07:21 +0000 (+0000) Subject: Add missing return from last commit X-Git-Tag: v2.0.1~11916 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/a7db5ee7f8d721d67e3a7d28a3234ec9353e65af Add missing return from last commit --- diff --git a/sys/dev/raid/ips/ips_commands.c b/sys/dev/raid/ips/ips_commands.c index 84887301b2..c98ab14919 100644 --- a/sys/dev/raid/ips/ips_commands.c +++ b/sys/dev/raid/ips/ips_commands.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/sys/dev/ips/ips_commands.c,v 1.8 2004/01/01 10:22:10 mbr - * $DragonFly: src/sys/dev/raid/ips/ips_commands.c,v 1.2 2004/02/25 15:46:54 joerg Exp $ + * $DragonFly: src/sys/dev/raid/ips/ips_commands.c,v 1.3 2004/02/26 14:07:21 joerg Exp $ */ #include @@ -555,6 +555,7 @@ ips_ffdc_reset(ips_softc_t *sc) free(status, M_DEVBUF); device_printf(sc->dev, "ERROR: unable to get a command! " "can't send ffdc reset!\n"); + return 1; } if (COMMAND_ERROR(status)) { free(status, M_DEVBUF);