| Index: core/include/fxcrt/fx_ext.h
|
| diff --git a/core/include/fxcrt/fx_ext.h b/core/include/fxcrt/fx_ext.h
|
| index 48801bb196c9cb76b9dfb12017029dc49c94992a..6cba8eeb919fd27d056ff5a86ea1880f22de4580 100644
|
| --- a/core/include/fxcrt/fx_ext.h
|
| +++ b/core/include/fxcrt/fx_ext.h
|
| @@ -93,7 +93,7 @@ template <class baseType>
|
| class CFX_SSortTemplate {
|
| public:
|
| void ShellSort(baseType* pArray, int32_t iCount) {
|
| - FXSYS_assert(pArray != NULL && iCount > 0);
|
| + FXSYS_assert(pArray && iCount > 0);
|
| int32_t i, j, gap;
|
| baseType v1, v2;
|
| gap = iCount >> 1;
|
|
|