diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2020-11-22 09:43:06 +0000 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2020-11-25 11:42:07 +0000 |
commit | 7b185b83dddde4aa6d1fd6c158c115b618e0814d (patch) | |
tree | 91f8db499feb0e2e60994fc506cf690943b2a724 /src/win32/map.c | |
parent | c7d607992319c0b117f07960b973bf7cd63fe90f (diff) | |
download | libgit2-ethomson/assert.tar.gz |
win32: use GIT_ASSERTethomson/assert
Diffstat (limited to 'src/win32/map.c')
-rw-r--r-- | src/win32/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/map.c b/src/win32/map.c index e2ce737de..2aabc9b15 100644 --- a/src/win32/map.c +++ b/src/win32/map.c @@ -117,7 +117,7 @@ int p_munmap(git_map *map) { int error = 0; - assert(map != NULL); + GIT_ASSERT_ARG(map); if (map->data) { if (!UnmapViewOfFile(map->data)) { |