diff options
author | Crist J. Clark <cjc@FreeBSD.org> | 2001-12-27 22:41:35 +0000 |
---|---|---|
committer | Crist J. Clark <cjc@FreeBSD.org> | 2001-12-27 22:41:35 +0000 |
commit | 726acc787d59755296a4ad5d7a29edc39590baf1 (patch) | |
tree | 7096b2410191f4991f9da73c47a63e6e58e6f0c2 /etc | |
parent | 0a17ab83f981cd004f84133d3794a85078067dfd (diff) | |
download | src-726acc787d59755296a4ad5d7a29edc39590baf1.tar.gz src-726acc787d59755296a4ad5d7a29edc39590baf1.zip |
Fix some leftover stray characters from expr(1)-to-$(()) sweeps.
PR: bin/33158
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
MFC after: 1 day
Notes
Notes:
svn path=/head/; revision=88560
Diffstat (limited to 'etc')
-rw-r--r-- | etc/MAKEDEV | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index 3620bcfcfb6f..e69c56914f13 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -1513,8 +1513,8 @@ ttyx?|ttyy?|ttyz?) *c) unit=12;; *d) unit=13;; *e) unit=14;; *f) unit=15;; esac case $i in - ttyy?) unit=$(($unit \+ 16));; - ttyz?) unit=$(($unit \+ 32));; + ttyy?) unit=$(($unit + 16));; + ttyz?) unit=$(($unit + 32));; esac mknod $i c 42 $unit ;; |