fix writeToFD() return type in declaration

In 25a7791d return type of writeToFD() was changed from `ssize_t` to `bool`, but header wasn't updated.
This commit is contained in:
Vladimir Rutsky 2018-11-25 18:26:52 +01:00
parent 069a3e96cc
commit ec0d4174f1

2
util.h
View File

@ -42,7 +42,7 @@ namespace util {
ssize_t readFromFd(int fd, void* buf, size_t len);
ssize_t readFromFile(const char* fname, void* buf, size_t len);
ssize_t writeToFd(int fd, const void* buf, size_t len);
bool writeToFd(int fd, const void* buf, size_t len);
bool writeBufToFile(const char* filename, const void* buf, size_t len, int open_flags);
bool createDirRecursively(const char* dir);
std::string* StrAppend(std::string* str, const char* format, ...)