diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-01-11 17:48:15 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-01-11 17:48:15 -0500 |
commit | 05485a47ea107737ada8b0941a7a066c6a075f40 (patch) | |
tree | 8bf8a5fee750b20a631f02f60e6db21788ecc14f /python/modules/IcePy/Init.cpp | |
parent | Moved UniquePtr to IceInternal (diff) | |
download | ice-05485a47ea107737ada8b0941a7a066c6a075f40.tar.bz2 ice-05485a47ea107737ada8b0941a7a066c6a075f40.tar.xz ice-05485a47ea107737ada8b0941a7a066c6a075f40.zip |
Replace NULL by ICE_NULLPTR
Diffstat (limited to 'python/modules/IcePy/Init.cpp')
-rw-r--r-- | python/modules/IcePy/Init.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/modules/IcePy/Init.cpp b/python/modules/IcePy/Init.cpp index 5c026c27321..a7855719137 100644 --- a/python/modules/IcePy/Init.cpp +++ b/python/modules/IcePy/Init.cpp @@ -111,10 +111,10 @@ static struct PyModuleDef iceModule = "The Internet Communications Engine.", -1, methods, - NULL, - NULL, - NULL, - NULL + ICE_NULLPTR, + ICE_NULLPTR, + ICE_NULLPTR, + ICE_NULLPTR }; #else |