From 583cdd4980ce51c8fe07949462ddea04ae443958 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Sun, 22 Jun 2025 21:38:35 +1200 Subject: [PATCH] fix indentation --- examples/companion_radio/DataStore.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/companion_radio/DataStore.cpp b/examples/companion_radio/DataStore.cpp index d2d00fbd..5c19d7a1 100644 --- a/examples/companion_radio/DataStore.cpp +++ b/examples/companion_radio/DataStore.cpp @@ -46,9 +46,9 @@ void DataStore::begin() { #if defined(NRF52_PLATFORM) || defined(STM32_PLATFORM) int _countLfsBlock(void *p, lfs_block_t block){ - lfs_size_t *size = (lfs_size_t*) p; - *size += 1; - return 0; + lfs_size_t *size = (lfs_size_t*) p; + *size += 1; + return 0; } lfs_ssize_t _getLfsUsedBlockCount() { @@ -68,8 +68,8 @@ uint32_t DataStore::getStorageUsedKb() const { return info.usedBytes / 1024; #elif defined(NRF52_PLATFORM) || defined(STM32_PLATFORM) const lfs_config* config = InternalFS._getFS()->cfg; - int usedBlockCount = _getLfsUsedBlockCount(); - int usedBytes = config->block_size * usedBlockCount; + int usedBlockCount = _getLfsUsedBlockCount(); + int usedBytes = config->block_size * usedBlockCount; return usedBytes / 1024; #else return 0; @@ -86,7 +86,7 @@ uint32_t DataStore::getStorageTotalKb() const { return info.totalBytes / 1024; #elif defined(NRF52_PLATFORM) || defined(STM32_PLATFORM) const lfs_config* config = InternalFS._getFS()->cfg; - int totalBytes = config->block_size * config->block_count; + int totalBytes = config->block_size * config->block_count; return totalBytes / 1024; #else return 0;