diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-06-22 11:07:16 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-06-22 11:07:16 -0400 |
| commit | f9d40ebad822d9d873e05f0fbe52990dc538179e (patch) | |
| tree | 20b37f53f7909efee3c4d33486232e62ebfd1053 /src/d/d_path.cpp | |
| parent | c836c5ca1f14fa629a82e02ea74fb681a7c94e6b (diff) | |
Use NULL macro in asserts, fix NULL macro to match
Diffstat (limited to 'src/d/d_path.cpp')
| -rw-r--r-- | src/d/d_path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/d_path.cpp b/src/d/d_path.cpp index e48aa6a5..10596350 100644 --- a/src/d/d_path.cpp +++ b/src/d/d_path.cpp @@ -9,7 +9,7 @@ /* 80080018-8008010C .text dPath_GetPnt__FP5dPathi */ dPath__Point* dPath_GetPnt(dPath* path, int pnt_index) { - JUT_ASSERT(30, path != 0); + JUT_ASSERT(30, path != NULL); JUT_ASSERT(31, 0 <= pnt_index && pnt_index < path->m_num); if (path == NULL || path->mpPnt == NULL || 0 > pnt_index || pnt_index >= path->m_num) |
