summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrocky <rocky@gnu.org>2012-09-26 16:40:31 -0400
committerrocky <rocky@gnu.org>2012-09-26 16:40:31 -0400
commitf47bf5e9f9e64d66192aa2798c23b207a73462ad (patch)
tree797343557bdf628126d48861128d8f21f075cea9
parent4de37e54e081ce62778a73983ba77393e87b885d (diff)
More places where -- prefix output added on examples
-rw-r--r--example/mmc2a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/mmc2a.c b/example/mmc2a.c
index 88f184f6..261173fe 100644
--- a/example/mmc2a.c
+++ b/example/mmc2a.c
@@ -121,7 +121,7 @@ print_mode_sense (const char *psz_drive, const char *six_or_ten,
printf("-- \tReads de-interleaved R-W subchannel.\n");
}
if (buf[5] & 0x10) {
- printf("\tSupports C2 error pointers.\n");
+ printf("-- \tSupports C2 error pointers.\n");
}
if (buf[5] & 0x20) {
printf("-- \tReads ISRC information.\n");
@@ -136,7 +136,7 @@ print_mode_sense (const char *psz_drive, const char *six_or_ten,
printf("-- \tReads bar codes.\n");
}
if (buf[6] & 0x01) {
- printf("\tPREVENT/ALLOW may lock media.\n");
+ printf("-- \tPREVENT/ALLOW may lock media.\n");
}
printf("-- \tLock state is %slocked.\n", (buf[6] & 0x02) ? "" : "un");
printf("-- \tPREVENT/ALLOW jumper is %spresent.\n", (buf[6] & 0x04) ? "": "not ");