Fix warnings.

This commit is contained in:
Victor Zverovich 2014-05-03 15:50:22 -07:00
parent 1a6d365db5
commit d13946bfb7
2 changed files with 5 additions and 5 deletions

View File

@ -154,12 +154,12 @@ TEST(FileTest, DefaultCtor) {
// Checks if the file is open by reading one character from it.
bool IsOpen(int fd) {
char buffer;
return read(fd, &buffer, 1) == 1;
return FMT_POSIX(read(fd, &buffer, 1)) == 1;
}
bool IsClosedInternal(int fd) {
char buffer;
std::streamsize result = read(fd, &buffer, 1);
std::streamsize result = FMT_POSIX(read(fd, &buffer, 1));
return result == -1 && errno == EBADF;
}
@ -248,7 +248,7 @@ TEST(FileTest, DtorCloseError) {
// The close function must be called inside EXPECT_STDERR, otherwise
// the system may allocate freed file descriptor when redirecting the
// output in EXPECT_STDERR.
EXPECT_STDERR(close(f->descriptor()); delete f,
EXPECT_STDERR(FMT_POSIX(close(f->descriptor())); delete f,
FormatSystemErrorMessage(EBADF, "cannot close file") + "\n");
}

View File

@ -165,7 +165,7 @@ std::string OutputRedirector::Read() {
// Restore output.
if (std::fflush(file_) != 0)
fmt::ThrowSystemError(errno, "cannot flush stream");
saved_.dup2(fileno(file_));
saved_.dup2(FMT_POSIX(fileno(file_)));
// Read everything from the pipe.
std::string content;
@ -174,7 +174,7 @@ std::string OutputRedirector::Read() {
std::streamsize count = 0;
do {
count = read_end_.read(buffer, BUFFER_SIZE);
content.append(buffer, count);
content.append(buffer, static_cast<std::size_t>(count));
} while (count != 0);
return content;
}