# HG changeset patch # User Sebastien Jodogne # Date 1354194507 -3600 # Node ID 5459f05b4f54d899e51b0a03fb97531e6db224ee # Parent 0200cd330582f448094adfacd6a6a06367d49929 fix for windows diff -r 0200cd330582 -r 5459f05b4f54 Core/HttpServer/FilesystemHttpSender.cpp --- a/Core/HttpServer/FilesystemHttpSender.cpp Thu Nov 29 13:27:33 2012 +0100 +++ b/Core/HttpServer/FilesystemHttpSender.cpp Thu Nov 29 14:08:27 2012 +0100 @@ -50,7 +50,7 @@ bool FilesystemHttpSender::SendData(HttpOutput& output) { - FILE* fp = fopen(path_.c_str(), "rb"); + FILE* fp = fopen(path_.string().c_str(), "rb"); if (!fp) { return false;