forked from Lainports/freebsd-ports
This also allows us to return to standard libtool-handling. PR: ports/80169 Submitted by: Helge Oldach Approved by: maintainer timeout
17 lines
532 B
C++
17 lines
532 B
C++
|
|
$FreeBSD$
|
|
|
|
--- tests/descriptor_test.cpp.orig
|
|
+++ tests/descriptor_test.cpp
|
|
@@ -34,9 +34,9 @@
|
|
|
|
cout << bus->directoryName() << "/"
|
|
<< device->fileName() << " "
|
|
- << uppercase << hex << setw(4) << setfill('0')
|
|
+ << hex << setw(4) << setfill('0')
|
|
<< device->idVendor() << "/"
|
|
- << uppercase << hex << setw(4) << setfill('0')
|
|
+ << hex << setw(4) << setfill('0')
|
|
<< device->idProduct() << endl;
|
|
if (device->Vendor() != "") {
|
|
cout << "- Manufacturer : " << device->Vendor() << endl;
|