Index: core/fdrm/crypto/fx_crypt_sha.cpp |
diff --git a/core/fdrm/crypto/fx_crypt_sha.cpp b/core/fdrm/crypto/fx_crypt_sha.cpp |
index eb3373cfb03d134834f37908ba3df7e83396c6de..5fb45ab66ad30e9aa743bd602119d5f3ce24a789 100644 |
--- a/core/fdrm/crypto/fx_crypt_sha.cpp |
+++ b/core/fdrm/crypto/fx_crypt_sha.cpp |
@@ -384,7 +384,7 @@ uint64_t FX_ato64i(const FX_CHAR* str) { |
} else if (str[i] >= 'A' && str[i] <= 'F') { |
ret |= (str[i] - 'A' + 10) & 0xFF; |
} else { |
- ASSERT(FALSE); |
+ ASSERT(false); |
} |
} |
return ret; |