diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-19 17:51:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-19 17:51:22 +0200 |
commit | 66f67c27f520d58db120ac479a9ea695e8ddbf61 (patch) | |
tree | 748dcea11a449db7b33936ea3b990e0cbe5f9d41 /stoc | |
parent | ae03847c2d7e1b670ec085e0418f6f91784a80a0 (diff) |
loplugin:defaultparams
Change-Id: I240e44c0d342f75f613f8a74e11ba149961adae1
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/simpleregistry/simpleregistry.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/simpleregistry/simpleregistry.cxx b/stoc/source/simpleregistry/simpleregistry.cxx index 3f5f22124553..31c74862f79d 100644 --- a/stoc/source/simpleregistry/simpleregistry.cxx +++ b/stoc/source/simpleregistry/simpleregistry.cxx @@ -1079,7 +1079,7 @@ void SimpleRegistry::mergeKey( RegistryKey root; RegError err = registry_.openRootKey(root); if (err == RegError::NO_ERROR) { - err = registry_.mergeKey(root, aKeyName, aUrl, false); + err = registry_.mergeKey(root, aKeyName, aUrl); } switch (err) { case RegError::NO_ERROR: |