dd: fix example in a comment. No code changes.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2013-08-19 10:30:55 +02:00
parent b941316ae5
commit 8395bd3f52

View File

@ -382,7 +382,7 @@ int dd_main(int argc UNUSED_PARAM, char **argv)
}
if (flags & FLAG_SWAB) {
/* If n is odd, last byte is not swapped:
* echo -n "qwe" | dd conv=swab bs=1
* echo -n "qwe" | dd conv=swab
* prints "wqe".
* The code does not handle correctly odd-sized reads
* in the *middle* of the input. FIXME.