It works better here
This commit is contained in:
Alfonso Gregory 2021-07-13 14:49:01 -04:00 committed by GitHub
commit db6348aec3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -601,7 +601,7 @@ bool zernum(_In_ PNUMBER a)
// loop over all the digits until you find a nonzero or until you run // loop over all the digits until you find a nonzero or until you run
// out of digits // out of digits
for (int32_t length = a->cdigit; length > 0; --length) for (auto length = a->cdigit; length > 0; --length)
{ {
if (*pcha) if (*pcha)
{ {