all: Format code to add space after C++-style comment start.

Note: the uncrustify configuration is explicitly set to 'add' instead of
'force' in order not to alter the comments which use extra spaces after //
as a means of indenting text for clarity.
This commit is contained in:
stijn
2020-04-16 09:13:57 +02:00
committed by Damien George
parent d6243568a0
commit 84fa3312cf
90 changed files with 200 additions and 200 deletions

View File

@@ -140,7 +140,7 @@ static void build_partition(uint8_t *buf, int boot, int type, uint32_t start_blo
}
bool storage_read_block(uint8_t *dest, uint32_t block) {
//printf("RD %u\n", block);
// printf("RD %u\n", block);
if (block == 0) {
// fake the MBR so we can decide on our own partition table
@@ -172,7 +172,7 @@ bool storage_read_block(uint8_t *dest, uint32_t block) {
}
bool storage_write_block(const uint8_t *src, uint32_t block) {
//printf("WR %u\n", block);
// printf("WR %u\n", block);
if (block == 0) {
// can't write MBR, but pretend we did
return true;