Add comma

This commit is contained in:
Alfonso Gregory 2021-07-14 14:04:13 -04:00 committed by GitHub
commit afaee0f4ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ void addnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix)
_addnum(pa, b, radix);
}
else
{ // if pa is zero and b isn't just copy b.
{ // if pa is zero and b isn't, just copy b.
DUPNUM(*pa, b);
}
}