| Index: tools/gn/escape.cc
|
| diff --git a/tools/gn/escape.cc b/tools/gn/escape.cc
|
| index 06f6ee8bec3d6b6758a62b498506b26aa09c85da..3104cb8313391e4ce33a41b3b061553e4220efec 100644
|
| --- a/tools/gn/escape.cc
|
| +++ b/tools/gn/escape.cc
|
| @@ -200,7 +200,7 @@ void EscapeStringToStream(std::ostream& out,
|
| const base::StringPiece& str,
|
| const EscapeOptions& options) {
|
| base::StackString<256> escaped;
|
| - EscapeStringToString(str, options, &escaped.container(), NULL);
|
| + EscapeStringToString(str, options, &escaped.container(), nullptr);
|
| if (!escaped->empty())
|
| out.write(escaped->data(), escaped->size());
|
| }
|
|
|