Fixed compile error on Unix #4745

This commit is contained in:
Jerry (Xinyu Hou) 2015-06-01 16:04:13 -07:00
parent bfe616eebe
commit 4533063768
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ DropHelper::writeToDir(const String& destination, DragFileList& fileList, String
file.write(data.c_str(), data.size());
file.close();
LOG((CLOG_NOTIFY "File Transmission Complete: %s is saved to %s", fileList.at(0).getFilename(), destination.c_str()));
LOG((CLOG_NOTIFY "File Transmission Complete: %s is saved to %s", fileList.at(0).getFilename().c_str(), destination.c_str()));
fileList.clear();
}