summaryrefslogtreecommitdiffstats
path: root/src/common/configuration.cpp
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2013-04-27 21:42:58 +0200
committerErik Schilling <ablu.erikschilling@googlemail.com>2013-04-27 21:42:58 +0200
commitd4f3105d9a879f27baad6e43b8b3cb6fe2f0ef50 (patch)
tree474ec7369f0d367d7780f73901d38d1daec4d2eb /src/common/configuration.cpp
parent2c14cd30ecbacbd5a808cb2641d40f6d568ec294 (diff)
downloadmanaserv-d4f3105d9a879f27baad6e43b8b3cb6fe2f0ef50.tar.gz
manaserv-d4f3105d9a879f27baad6e43b8b3cb6fe2f0ef50.tar.xz
manaserv-d4f3105d9a879f27baad6e43b8b3cb6fe2f0ef50.zip
Use nullptr instead of NULL everywhere
Diffstat (limited to 'src/common/configuration.cpp')
-rw-r--r--src/common/configuration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/configuration.cpp b/src/common/configuration.cpp
index 460db37..906d262 100644
--- a/src/common/configuration.cpp
+++ b/src/common/configuration.cpp
@@ -57,7 +57,7 @@ static bool readFile(const std::string &fileName)
return false;
}
- for (node = node->xmlChildrenNode; node != NULL; node = node->next)
+ for (node = node->xmlChildrenNode; node != nullptr; node = node->next)
{
if (xmlStrEqual(node->name, BAD_CAST "include"))
{