diff options
| author | Bdale Garbee <bdale@gag.com> | 2018-03-18 15:33:44 -0600 |
|---|---|---|
| committer | Bdale Garbee <bdale@gag.com> | 2018-03-18 15:33:44 -0600 |
| commit | 84146083da782c335ba7f040b238c3f51ba2f484 (patch) | |
| tree | 8e23119812b141f69f44ae0ba9423c74af56f0e5 /ao-tools | |
| parent | ee79a205e118ea8730a02cc327d8fb79cc5f74ff (diff) | |
| parent | 78e5ae58c2ad5ba7246a649c0bd15ff68b5d0e74 (diff) | |
Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
Diffstat (limited to 'ao-tools')
| -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); } |
