summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hinfo.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:16:36 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:27 +0100
commitc3dcdeb1d2bccc3785e3675843a5228e183b307f (patch)
tree857f6a942ba3b535be2baa1b43c5e5bb834aaff5 /hwpfilter/source/hinfo.cxx
parent2df257e95e655de7b0f888b033a56cd800d3002e (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: Idec97093ca48c14b825c7b87ec050cc99aadc526
Diffstat (limited to 'hwpfilter/source/hinfo.cxx')
-rw-r--r--hwpfilter/source/hinfo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/hinfo.cxx b/hwpfilter/source/hinfo.cxx
index 0c158ad27020..2ca1714045f1 100644
--- a/hwpfilter/source/hinfo.cxx
+++ b/hwpfilter/source/hinfo.cxx
@@ -56,7 +56,7 @@ HWPInfo::HWPInfo()
, compressed(0)
, reserved3(0)
, info_block_len(0)
- , info_block(NULL)
+ , info_block(nullptr)
{
back_info.isset = false;
memset(reserved1, 0, sizeof(reserved1));
@@ -67,7 +67,7 @@ HWPInfo::HWPInfo()
HWPInfo::~HWPInfo()
{
delete[] info_block;
- info_block = 0;
+ info_block = nullptr;
}