Skip to content

Commit

Permalink
Merge #11467: Fix typos. Use nullptr instead of NULL.
Browse files Browse the repository at this point in the history
0aacfa4 Remove accidental stray semicolon (practicalswift)
68feb49 Use nullptr instead of NULL (practicalswift)
c6b07fd Fix a vs. an typo (practicalswift)

Pull request description:

  Minor cleanups:
  * Typo: Fix a vs. an typo
  * Typo: Remove accidental stray semicolon (only remaining instance in repo)
  * Correctness/consistency: Use `nullptr` instead of `NULL` (only remaining instance in repo)

Tree-SHA512: 47142e557da9d3fa0b532c46edeb7f356a1f6dc5973e60b0e496badff3581ff696eade542d49da777ac7f2e895129cc8487ccdb1984ff828434fa86f9a56dad0
  • Loading branch information
laanwj committed Oct 18, 2017
2 parents 6759a24 + 0aacfa4 commit 937613d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contrib/verify-commits/verify-commits.sh
Expand Up @@ -39,7 +39,7 @@ PREV_COMMIT=""
while true; do
if [ "$CURRENT_COMMIT" = $VERIFIED_ROOT ]; then
echo "There is a valid path from "$CURRENT_COMMIT" to $VERIFIED_ROOT where all commits are signed!"
exit 0;
exit 0
fi

if [ "$CURRENT_COMMIT" = $VERIFIED_SHA512_ROOT ]; then
Expand Down
2 changes: 1 addition & 1 deletion src/netbase.cpp
Expand Up @@ -291,7 +291,7 @@ struct ProxyCredentials
std::string password;
};

/** Convert SOCKS5 reply to a an error message */
/** Convert SOCKS5 reply to an error message */
std::string Socks5ErrorString(uint8_t err)
{
switch(err) {
Expand Down
2 changes: 1 addition & 1 deletion src/wallet/wallet.cpp
Expand Up @@ -3881,7 +3881,7 @@ CWallet* CWallet::CreateWalletFromFile(const std::string walletFile)
// Top up the keypool
if (!walletInstance->TopUpKeyPool()) {
InitError(_("Unable to generate initial keys") += "\n");
return NULL;
return nullptr;
}

walletInstance->SetBestChain(chainActive.GetLocator());
Expand Down

0 comments on commit 937613d

Please sign in to comment.