| Index: src/runtime/runtime-i18n.cc
 | 
| diff --git a/src/runtime/runtime-i18n.cc b/src/runtime/runtime-i18n.cc
 | 
| index 18e9aee126b47329cfd847d08ff88dde0aa101e4..3da71a98ef309d23b7d31f0349a751536602a728 100644
 | 
| --- a/src/runtime/runtime-i18n.cc
 | 
| +++ b/src/runtime/runtime-i18n.cc
 | 
| @@ -626,7 +626,7 @@ RUNTIME_FUNCTION(Runtime_CreateBreakIterator) {
 | 
|  
 | 
|    local_object->SetInternalField(0, reinterpret_cast<Smi*>(break_iterator));
 | 
|    // Make sure that the pointer to adopted text is NULL.
 | 
| -  local_object->SetInternalField(1, reinterpret_cast<Smi*>(NULL));
 | 
| +  local_object->SetInternalField(1, static_cast<Smi*>(nullptr));
 | 
|  
 | 
|    Factory* factory = isolate->factory();
 | 
|    Handle<String> key = factory->NewStringFromStaticChars("breakIterator");
 | 
| 
 |