aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/stubs/stringprintf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/google/protobuf/stubs/stringprintf.cc')
-rw-r--r--src/google/protobuf/stubs/stringprintf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/stubs/stringprintf.cc b/src/google/protobuf/stubs/stringprintf.cc
index d98b9b87..820bfe7f 100644
--- a/src/google/protobuf/stubs/stringprintf.cc
+++ b/src/google/protobuf/stubs/stringprintf.cc
@@ -76,7 +76,7 @@ void StringAppendV(string* dst, const char* format, va_list ap) {
// Error or MSVC running out of space. MSVC 8.0 and higher
// can be asked about space needed with the special idiom below:
va_copy(backup_ap, ap);
- result = vsnprintf(NULL, 0, format, backup_ap);
+ result = vsnprintf(nullptr, 0, format, backup_ap);
va_end(backup_ap);
}