diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2014-08-05 18:18:17 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2014-09-07 17:45:28 +0200 |
| commit | dd05dc76a45718ad327d3fec69c259b873c39154 (patch) | |
| tree | 827055a4545f1c370a6ccafc84d19deb2cdb5f73 /utils/hwstub/tools/init.lua | |
| parent | 43ca127ebfe9766c84a0456dbac5cafd5f4cb451 (diff) | |
| download | rockbox-dd05dc76a45718ad327d3fec69c259b873c39154.zip rockbox-dd05dc76a45718ad327d3fec69c259b873c39154.tar.gz rockbox-dd05dc76a45718ad327d3fec69c259b873c39154.tar.bz2 rockbox-dd05dc76a45718ad327d3fec69c259b873c39154.tar.xz | |
hwstub: don't put revision in the protocol, it's specific to the implementation
Change-Id: I1311a22da41fe977f1613f1e313a864baa03027c
Diffstat (limited to 'utils/hwstub/tools/init.lua')
| -rw-r--r-- | utils/hwstub/tools/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/hwstub/tools/init.lua b/utils/hwstub/tools/init.lua index 3c60abf..1fe0e0d 100644 --- a/utils/hwstub/tools/init.lua +++ b/utils/hwstub/tools/init.lua @@ -66,8 +66,8 @@ end if not hwstub.options.quiet then print("information") print(" hwstub") - print(" version: " .. string.format("%d.%d.%d", hwstub.host.version.major, - hwstub.host.version.minor, hwstub.host.version.revision)) + print(" version: " .. string.format("%d.%d", hwstub.host.version.major, + hwstub.host.version.minor)) print(" device") print(" version: " .. string.format("%d.%d.%d", hwstub.dev.version.major, hwstub.dev.version.minor, hwstub.dev.version.revision)) |