overwrite if >256 is more clear

pull/390/head
Conor Patrick 2019-10-29 08:58:57 -04:00
rodzic 349cbc39f2
commit 094420b32b
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -577,7 +577,7 @@ uint32_t ctap_atomic_count(uint32_t amount)
return lastc;
}
if (amount > lastc){
if (amount > 256){
lastc = amount;
} else {
lastc += amount;