scsi(8) used to fall off the end of main(), returning an arbitrary

value.

Reviewed by:
Submitted by:
Obtained from:
This commit is contained in:
Joerg Wunsch 1995-07-30 12:58:47 +00:00
parent 55cc556c42
commit 69c06b0c7f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9793

View File

@ -39,7 +39,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: scsi.c,v 1.8 1995/05/30 06:09:58 rgrimes Exp $
* $Id: scsi.c,v 1.9 1995/07/11 09:21:33 dufault Exp $
*/
#include <stdio.h>
@ -944,4 +944,5 @@ void main(int argc, char **argv)
} else if (modeflag) {
mode_edit(fd, modepage, editflag, argc, argv);
}
exit(0);
}