Skip to content

Commit 17394b9

Browse files
authored
Merge pull request #12484 from mtomczykmobica/IOTSTOR-1009
TDBStore magic number if endian sensitive fix comment
2 parents 8f1bf96 + b5d0b7b commit 17394b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/storage/kvstore/tdbstore/TDBStore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ typedef struct {
5454
} ram_table_entry_t;
5555

5656
static const char *master_rec_key = "TDBS";
57-
static const uint32_t tdbstore_magic = 0x54686683; // "TDBS" in ASCII
57+
static const uint32_t tdbstore_magic = 0x54686683;
5858
static const uint32_t tdbstore_revision = 1;
5959

6060
typedef struct {

0 commit comments

Comments
 (0)