summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2012-06-08 21:19:45 +0300
committerVille Skyttä <ville.skytta@iki.fi>2012-06-08 21:19:45 +0300
commitd735cb2be8689274508a045839875e0397220586 (patch)
tree7f6339f0619d9b64cd572e2628dcee151c6135eb
parent425e2ae6eb60374d7575b584a9f4a3794a5fd4bb (diff)
downloadvdradmin-am-d735cb2be8689274508a045839875e0397220586.tar.gz
vdradmin-am-d735cb2be8689274508a045839875e0397220586.tar.bz2
Spelling fixes.
-rw-r--r--INSTALL2
-rwxr-xr-xvdradmind.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/INSTALL b/INSTALL
index 7524407..768d2f8 100644
--- a/INSTALL
+++ b/INSTALL
@@ -29,7 +29,7 @@ to get a complete VDRAdmin-AM folder:
the missing Perl modules:
$ ./make.sh check
-4) Now you have to deside wether you want to run VDRAdmin-AM locally (4a)
+4) Now you have to decide whether you want to run VDRAdmin-AM locally (4a)
in this directory or install it into your system (4b).
4a) run locally (=no installation)
diff --git a/vdradmind.pl b/vdradmind.pl
index 1299565..0be1ee2 100755
--- a/vdradmind.pl
+++ b/vdradmind.pl
@@ -2185,7 +2185,7 @@ sub PackStatus { #TODO: unused
# (positive) int will remain, then shift the int 16 bits to the left and
# add active -- result is a 31 bit (always positive) int.
# The 32nd bit is the minus sign, and due the (binary) smallest value
- # is the (int) lowest possible number, we have to substract the lowest
+ # is the (int) lowest possible number, we have to subtract the lowest
# value + 1 from the 31 bit value -- result is the signed 32 bit int equal
# to the (unsigned) 32 bit int.
return ($active | (($event_id & 0x7FFF) << 16)) - 0x80000000;