Sentences finish with a full stop

pull/10507/head
Craig Tiller 8 years ago
parent f4360d77d4
commit ef814ca29a
  1. 8
      src/core/lib/iomgr/ev_epollex_linux.c

@ -851,10 +851,10 @@ static const grpc_event_engine_vtable vtable = {
static bool is_epollex_available(void) { static bool is_epollex_available(void) {
int fd = epoll_create1(EPOLL_CLOEXEC); int fd = epoll_create1(EPOLL_CLOEXEC);
if (fd < 0) { if (fd < 0) {
gpr_log( gpr_log(GPR_ERROR,
GPR_ERROR, "epoll_create1 failed with error: %d. Not using epollex polling "
"epoll_create1 failed with error: %d. Not using epollex polling engine", "engine.",
fd); fd);
return false; return false;
} }
grpc_wakeup_fd wakeup; grpc_wakeup_fd wakeup;

Loading…
Cancel
Save