summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Rauwolf <rauwolf@itestra.de>2013-10-16 10:41:43 +0200
committerPhilip Rauwolf <rauwolf@itestra.de>2013-10-16 10:41:43 +0200
commit330b112429519a7c49a6d75552fe3a3fdfcea57e (patch)
tree428d90e3e0ca5bde9cde271daed901603a591f38
parent6d0f3cfe4b7a0db3eabb372ec44e0c0c6706aa5f (diff)
downloadgenivi-common-api-runtime-330b112429519a7c49a6d75552fe3a3fdfcea57e.tar.gz
Corrected return value of utility function
-rw-r--r--src/CommonAPI/ContainerUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CommonAPI/ContainerUtils.cpp b/src/CommonAPI/ContainerUtils.cpp
index cfe6914..08fe2bc 100644
--- a/src/CommonAPI/ContainerUtils.cpp
+++ b/src/CommonAPI/ContainerUtils.cpp
@@ -14,7 +14,7 @@ size_t SharedPointerClientIdContentHash::operator()(const std::shared_ptr<Client
if (t) {
return t->hashCode();
} else {
- return NULL;
+ return 0;
}
}