From 6c22232855c65193594a4d627173f366bf640d11 Mon Sep 17 00:00:00 2001
From: drausch <dominik.rausch@rwth-aachen.de>
Date: Mon, 30 May 2016 14:07:40 +0200
Subject: [PATCH] fixed Null-as-bool return value

---
 VistaCoreLibs/VistaOGLExt/Rendering/ABuffer/VistaABufferOIT.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/VistaCoreLibs/VistaOGLExt/Rendering/ABuffer/VistaABufferOIT.cpp b/VistaCoreLibs/VistaOGLExt/Rendering/ABuffer/VistaABufferOIT.cpp
index c972924e8..ca8da0928 100644
--- a/VistaCoreLibs/VistaOGLExt/Rendering/ABuffer/VistaABufferOIT.cpp
+++ b/VistaCoreLibs/VistaOGLExt/Rendering/ABuffer/VistaABufferOIT.cpp
@@ -141,7 +141,7 @@ bool VistaABufferOIT::Init(
 		break;
 	default:
 		vstr::errp() << "[VistaABufferOIT] unknown A-Buffer-Implementation" << std::endl;
-		return NULL;
+		return false;
 	}
 
 
-- 
GitLab