diff options
author | Bdale Garbee <bdale@gag.com> | 2018-03-18 15:47:31 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2018-03-18 15:47:31 -0600 |
commit | 7b614380f307cb5e27f2a05281bc76c4ace93334 (patch) | |
tree | d243b069a134233f4b98e35769193a1244fc57f8 /ao-tools/ao-usbload/ao-usbload.c | |
parent | 16a9d8617b2d2092d166a85ada4349601afb0dce (diff) | |
parent | 39023ed6e29103a85bfad505506fa0dbf4dc1112 (diff) |
Merge branch 'master' into branch-1.8
Diffstat (limited to 'ao-tools/ao-usbload/ao-usbload.c')
-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); } |