diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2001-06-22 21:17:36 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2001-06-22 21:17:36 +0000 |
commit | b987b3065453f23c2b08a35f21b7b7aeef879a7d (patch) | |
tree | 323941311f64a4ef26af77bdaa81097d50d95a28 | |
parent | f308dc91979036b1d3abdba87a42a94d39246374 (diff) |
minor nit.
-rw-r--r-- | etc/etc.alpha/MAKEDEV | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.alpha/MAKEDEV b/etc/etc.alpha/MAKEDEV index 02ccd82ae2f..14df18f0f17 100644 --- a/etc/etc.alpha/MAKEDEV +++ b/etc/etc.alpha/MAKEDEV @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: MAKEDEV,v 1.54 2001/06/22 15:20:11 brad Exp $ +# $OpenBSD: MAKEDEV,v 1.55 2001/06/22 21:17:35 brad Exp $ # $NetBSD: MAKEDEV,v 1.8.4.1 1996/06/18 00:41:56 cgd Exp $ # # Copyright (c) 1990 The Regents of the University of California. @@ -501,7 +501,7 @@ audio*) sound=sound$unit mixer=mixer$unit audioctl=audioctl$unit - rm -f $audio $sound $mixer $audioctl + rm -f $sound $audio $mixer $audioctl mknod $sound c $major $unit mknod $audio c $major $(( $unit + 128 )) mknod $mixer c $major $(( $unit + 16 )) |