Skip to content

Commit a6fd582

Browse files
authored
removed redundant 'alignas' specifier from buff
1 parent a092b6b commit a6fd582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp8266/Updater.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ bool UpdaterClass::end(bool evenIfRemaining){
279279
}
280280

281281
// Calculate hash of the payload, 128 bytes at a time
282-
alignas(alignof(uint32_t)) uint8_t buff[128];
282+
uint8_t buff[128];
283283

284284
_hash->begin();
285285
for (uint32_t offset = 0; offset < binSize; offset += sizeof(buff)) {

0 commit comments

Comments
 (0)