Fix a bunch of dumb typos and omissions.

This commit is contained in:
athenian200
2019-10-04 04:37:51 -05:00
parent db34ef993c
commit 575f51a27d
12 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -138,7 +138,7 @@ MessagePumpForUI::MessagePumpForUI()
int flags = fcntl(fds[0], F_GETFL,0);
if (flags == -1)
flags = 0;
fntl(fds[0], F_SETFL, flags | O_NDELAY);
fcntl(fds[0], F_SETFL, flags | O_NDELAY);
#endif
wakeup_pipe_read_ = fds[0];
wakeup_pipe_write_ = fds[1];
@@ -15,7 +15,7 @@
#if defined(OS_WIN)
#include <windows.h>
#elif defined(OS_LINUX)
#elif defined(OS_LINUX) || defined(OS_SOLARIS)
#include "chrome/common/x11_util.h"
#endif