summaryrefslogtreecommitdiffstats
path: root/utils/hwstub/tools
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2014-09-07 12:11:43 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2014-09-07 17:46:53 +0200
commit6957966c861498861008b27349dfbe209973a02f (patch)
tree37ca978ff399ebd5b97905120ae40afa86b60718 /utils/hwstub/tools
parentef0299c62ee31d0c6cb3bc755457bf37647123ba (diff)
downloadrockbox-6957966c861498861008b27349dfbe209973a02f.tar.gz
rockbox-6957966c861498861008b27349dfbe209973a02f.zip
hwstub: fix compile issue
Change-Id: I939c05d3c1319b122fe64bff0f0ea300ecbd1180
Diffstat (limited to 'utils/hwstub/tools')
-rw-r--r--utils/hwstub/tools/hwstub_load.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/hwstub/tools/hwstub_load.cpp b/utils/hwstub/tools/hwstub_load.cpp
index 8782c158d7..f1d17b79d2 100644
--- a/utils/hwstub/tools/hwstub_load.cpp
+++ b/utils/hwstub/tools/hwstub_load.cpp
@@ -263,7 +263,7 @@ int main(int argc, char **argv)
{
printf("Warning: this tool is possibly incompatible with your device:\n");
printf("Device version: %d.%d.%d\n", hwdev_ver.bMajor, hwdev_ver.bMinor, hwdev_ver.bRevision);
- printf("Host version: %d.%d.%d\n", HWSTUB_VERSION_MAJOR, HWSTUB_VERSION_MINOR, HWSTUB_VERSION_REV);
+ printf("Host version: %d.%d\n", HWSTUB_VERSION_MAJOR, HWSTUB_VERSION_MINOR);
}
ret = hwstub_rw_mem(hwdev, 0, addr, buffer, size);