diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2009-10-21 01:08:05 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2009-10-21 01:08:05 +0000 |
commit | 52109986881e77ba2f7a2e3dfe39f2f842732f16 (patch) | |
tree | ff0219ae68db2625da26e3dbfeaa24ede689da14 /util.cpp | |
parent | c199b8499d6c8ac08fad0349c3c53e07d41c6ac7 (diff) |
flush wallet.dat, multi-proc, reorg options, revert to startup folder shortcut
Diffstat (limited to 'util.cpp')
-rw-r--r-- | util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -86,7 +86,7 @@ void RandAddSeed(bool fPerfmon) struct tm* ptmTime = gmtime(&nTime);
char pszTime[200];
strftime(pszTime, sizeof(pszTime), "%x %H:%M:%S", ptmTime);
- printf("%s RandAddSeed() got %d bytes of performance data\n", pszTime, nSize);
+ printf("%s RandAddSeed() %d bytes\n", pszTime, nSize);
}
}
}
@@ -174,7 +174,7 @@ bool error(const char* format, ...) void PrintException(std::exception* pex, const char* pszThread)
{
- char pszModule[260];
+ char pszModule[MAX_PATH];
pszModule[0] = '\0';
GetModuleFileName(NULL, pszModule, sizeof(pszModule));
_strlwr(pszModule);
|