diff options
author | Daniel Campora <daniel@wipy.io> | 2015-04-17 09:55:24 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-04-17 09:55:24 +0200 |
commit | 2cd247e819a8c7b0fed59ee400e9eef4b1eba52c (patch) | |
tree | edef742b268bae2f6832d7cff6908c37329d928a /cc3200/bootmgr/main.c | |
parent | dcbf62b43d059cfa6d4ceffbaf3bf76defe2aa9c (diff) |
cc3200: Clean up bootloader makefile and remove superflous assert.
Diffstat (limited to 'cc3200/bootmgr/main.c')
-rw-r--r-- | cc3200/bootmgr/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/bootmgr/main.c b/cc3200/bootmgr/main.c index 8dc37b4a4..2297c568d 100644 --- a/cc3200/bootmgr/main.c +++ b/cc3200/bootmgr/main.c @@ -196,7 +196,7 @@ static bool bootmgr_verify (void) { } // read the hash from the file and close it - ASSERT (BOOTMGR_HASH_SIZE == sl_FsRead(fHandle, offset, bootmgr_file_buf, BOOTMGR_HASH_SIZE)); + sl_FsRead(fHandle, offset, bootmgr_file_buf, BOOTMGR_HASH_SIZE); sl_FsClose (fHandle, NULL, NULL, 0); bootmgr_file_buf[BOOTMGR_HASH_SIZE] = '\0'; // compare both hashes |