bool Launcher::getDataBlockFromHexFile(const std::string &pathfile, anna::DataBlock &db) const throw() {
// Get hex string
- static char buffer[2048];
+ static char buffer[8192];
std::ifstream infile(pathfile.c_str(), std::ifstream::in);
if(infile.is_open()) {
infile >> buffer;
std::string param = argv[1] ? argv[1] : "";
if (param == "") {
- std::string msg = anna::functions::asString("Use: %s <list of xml dictionaries overloaded>,\n i.e. '%s avps.xml commands.xml'", exec.c_str(), exec.c_str());
+ std::string msg = anna::functions::asString("Usage: %s <list of xml dictionaries overloaded>,\n i.e. '%s avps.xml commands.xml'", exec.c_str(), exec.c_str());
_exit(msg);
}