Linguistic purity.
This commit is contained in:
@@ -84,9 +84,9 @@ main(int argc, const char *argv[])
|
|||||||
driver_return_code_t drc;
|
driver_return_code_t drc;
|
||||||
bool b_erasable = mmc_get_disc_erasable(p_cdio, &drc);
|
bool b_erasable = mmc_get_disc_erasable(p_cdio, &drc);
|
||||||
if (DRIVER_OP_SUCCESS == drc)
|
if (DRIVER_OP_SUCCESS == drc)
|
||||||
printf("disk is %serasable.\n", b_erasable ? "" : "not ");
|
printf("Disc is %serasable.\n", b_erasable ? "" : "not ");
|
||||||
else
|
else
|
||||||
printf("Can't determine if disk is erasable.\n");
|
printf("Can't determine if disc is erasable.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ tmmc_get_disc_erasable(const CdIo_t *p_cdio, const char *psz_source,
|
|||||||
{
|
{
|
||||||
driver_return_code_t drc;
|
driver_return_code_t drc;
|
||||||
bool b_erasable = mmc_get_disc_erasable(p_cdio, &drc);
|
bool b_erasable = mmc_get_disc_erasable(p_cdio, &drc);
|
||||||
printf("disk is %serasable.\n", b_erasable ? "" : "not ");
|
printf("Disc is %serasable.\n", b_erasable ? "" : "not ");
|
||||||
return drc;
|
return drc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user