From: CryptoManiac Date: Sat, 5 Sep 2015 10:23:56 +0000 (-0700) Subject: Fix compilation error on Win32 platforms. X-Git-Tag: nvc-v0.5.3^0 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=5e762fd51fa59cad1e0107a60023a61a904e0174 Fix compilation error on Win32 platforms. --- diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index 83ca8fd..05bcbff 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -282,7 +282,7 @@ bool ExportBlock(const string& strBlockHash, const CDataStream& ssBlock) pathDest /= strBlockHash; try { - boost::iostreams::stream_buffer buf(pathDest.c_str()); + boost::iostreams::stream_buffer buf(pathDest.string()); ostream exportStream(&buf); exportStream << HexStr(ssBlock.begin(), ssBlock.end()); exportStream.flush();