fixed gcc bugs and warnings

This commit is contained in:
gabime
2014-10-14 04:56:10 +03:00
parent ef330729cb
commit 391bd396ef
5 changed files with 27 additions and 27 deletions

View File

@@ -122,9 +122,9 @@ public:
//_dev.sputn(buf, width);
}
void put_str(const std::string& str)
void put_str(const std::string& s)
{
_dev.sputn(str.data(), str.size());
_dev.sputn(s.data(), s.size());
}