summaryrefslogtreecommitdiffstats
path: root/generate_usbclass.pl
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-04-12 15:15:47 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-04-12 15:15:47 +0000
commitdca4c05ac52e8923848632940cd7e9dc5ee3b16d (patch)
tree2f5d2db311b5ed1348154e91b6cea428a4b566f3 /generate_usbclass.pl
parentee28b109e91016449ae2fa1e6dbfb7ef5d0da2c3 (diff)
downloadldetect-dca4c05ac52e8923848632940cd7e9dc5ee3b16d.tar
ldetect-dca4c05ac52e8923848632940cd7e9dc5ee3b16d.tar.gz
ldetect-dca4c05ac52e8923848632940cd7e9dc5ee3b16d.tar.bz2
ldetect-dca4c05ac52e8923848632940cd7e9dc5ee3b16d.tar.xz
ldetect-dca4c05ac52e8923848632940cd7e9dc5ee3b16d.zip
add the line in comment
Diffstat (limited to 'generate_usbclass.pl')
-rwxr-xr-xgenerate_usbclass.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/generate_usbclass.pl b/generate_usbclass.pl
index a503e85..63206c8 100755
--- a/generate_usbclass.pl
+++ b/generate_usbclass.pl
@@ -13,7 +13,7 @@ while (<>) {
if (/^C\s+(\d+)\s+(.*)/) {
($cat, $descr) = ($1, $2);
} elsif (/^\t\t(\d+)\s+(.*)/ && defined $cat) {
- print qq( { 0x$cat$1, "$descr|$2" },\n);
+ print qq(/* $. */ { 0x$cat$1, "$descr|$2" },\n);
} elsif (/^\S/) {
undef $cat;
}