diff options
author | Bdale Garbee <bdale@gag.com> | 2018-03-18 15:50:16 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2018-03-18 15:50:16 -0600 |
commit | 55b62bb5d6a9d6b484bcd0d802964d529dd5f9bb (patch) | |
tree | 1a93442d43fcad172879d76629d4ed47ce3d6575 /ao-tools/ao-usbload | |
parent | 558d2c94fe8c49d0544a3e7bc5ba11b60c4faa1e (diff) | |
parent | 59e23c27c2a85d7d748223e444b24d19937afe47 (diff) |
Merge branch 'branch-1.8' into debian
Diffstat (limited to 'ao-tools/ao-usbload')
-rw-r--r-- | ao-tools/ao-usbload/ao-usbload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/ao-usbload/ao-usbload.c b/ao-tools/ao-usbload/ao-usbload.c index 758eb696..31ee138a 100644 --- a/ao-tools/ao-usbload/ao-usbload.c +++ b/ao-tools/ao-usbload/ao-usbload.c @@ -402,9 +402,9 @@ main (int argc, char **argv) old_len = ucs2len(old_product); if (new_len != old_len || memcmp(new_product, old_product, new_len * 2) != 0) { fprintf(stderr, "USB product mismatch (device is "); - putucs2str(new_product, stderr); - fprintf(stderr, ", image is "); putucs2str(old_product, stderr); + fprintf(stderr, ", image is "); + putucs2str(new_product, stderr); fprintf(stderr, ")\n"); done(cc, 1); } |