aboutsummaryrefslogtreecommitdiffstats
path: root/src/codec
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-05-18 20:44:34 +0000
committerlloyd <[email protected]>2012-05-18 20:44:34 +0000
commit8383b0b503c812e45f2780217b048a19a8946853 (patch)
tree939403bad80ee2b1e13b69c82adc316422a9c7d6 /src/codec
parentc691561f3198f481c13457433efbccc1c9fcd898 (diff)
Replace 0 and NULL pointer constants with nullptr. Also fix an old
style cast in secmem.h
Diffstat (limited to 'src/codec')
-rw-r--r--src/codec/openpgp/openpgp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codec/openpgp/openpgp.cpp b/src/codec/openpgp/openpgp.cpp
index fe6ac6edf..7bd811a2f 100644
--- a/src/codec/openpgp/openpgp.cpp
+++ b/src/codec/openpgp/openpgp.cpp
@@ -136,7 +136,7 @@ secure_vector<byte> PGP_decode(DataSource& source,
}
Pipe base64(new Base64_Decoder,
- new Fork(0,
+ new Fork(nullptr,
new Chain(new Hash_Filter(new CRC24),
new Base64_Encoder)
)