summaryrefslogtreecommitdiffstats
path: root/libdha
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-12 20:47:55 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-12 20:47:55 +0000
commit2fe62851a9505333d0e5b9f61cd078a38d7723a4 (patch)
tree21a0faca61bfe8ab13dd748a4b0e13f5b9e21ad9 /libdha
parent4d7665a60266d278820d4b3fbd974addd09e91d6 (diff)
downloadmpv-2fe62851a9505333d0e5b9f61cd078a38d7723a4.tar.bz2
mpv-2fe62851a9505333d0e5b9f61cd078a38d7723a4.tar.xz
Fix typo and some updates.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4119 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libdha')
-rw-r--r--libdha/pci_db2c.awk8
1 files changed, 4 insertions, 4 deletions
diff --git a/libdha/pci_db2c.awk b/libdha/pci_db2c.awk
index a040e180f1..feaa1c7a1e 100644
--- a/libdha/pci_db2c.awk
+++ b/libdha/pci_db2c.awk
@@ -4,16 +4,16 @@
#
# Usage: awk -f pci_db2c.awk pci.db
#
-# Tested with Gawk v 3.0.3
-# But there are reports that it works with Awk and Mawk
-# (Nobody tested it with Nawk).
+# Tested with Gawk v 3.0.x and Mawk 1.3.3
+# But it should work with standard Awk implementations (hopefully).
+# (Nobody tested it with Nawk, but it should work, too).
#
BEGIN {
if(ARGC != 2) {
# check for arguments:
- print "Usage gawk -f pci_dc2c.awk pci.db";
+ print "Usage awk -f pci_db2c.awk pci.db (and make sure pci.db file exists first)";
exit(1);
}
in_file = ARGV[1];