aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-07-26 00:48:39 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2012-08-12 17:00:02 +0000
commit9e98fe6f584d8bdd0ffe4d5dc5c0b908beb456db (patch)
tree7184c24972587017f1670bbdc34d328c782feae7 /src/init.cpp
parentae8ccfd24bad9b0b08c431c7d446566b5fc3e661 (diff)
downloadbitcoin-9e98fe6f584d8bdd0ffe4d5dc5c0b908beb456db.tar.xz
Bugfix: Fix a variety of misspellings
(PARTIAL: Left out anything changing debug.log)
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 393d250003..c6712fa715 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -113,12 +113,12 @@ bool AppInit(int argc, char* argv[])
bool AppInit2(int argc, char* argv[])
{
#ifdef _MSC_VER
- // Turn off microsoft heap dump noise
+ // Turn off Microsoft heap dump noise
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
#endif
#if _MSC_VER >= 1400
- // Disable confusing "helpful" text message on abort, ctrl-c
+ // Disable confusing "helpful" text message on abort, Ctrl-C
_set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
#endif
#ifndef __WXMSW__