diff options
author | athenian200 <athenian200@outlook.com> | 2019-10-04 04:37:51 -0500 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2019-10-21 04:53:43 -0500 |
commit | 575f51a27d6b3627ae5675cc8e920c8dcae073bd (patch) | |
tree | 30a30c687b2d45a0c866e2d16e4974b67ffd4f61 /ipc | |
parent | db34ef993c3b0a25619ec56d98303933b61169bc (diff) | |
download | uxp-575f51a27d6b3627ae5675cc8e920c8dcae073bd.tar.gz |
Fix a bunch of dumb typos and omissions.
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/chromium/src/base/message_pump_glib.cc | 2 | ||||
-rw-r--r-- | ipc/chromium/src/chrome/common/transport_dib.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ipc/chromium/src/base/message_pump_glib.cc b/ipc/chromium/src/base/message_pump_glib.cc index a5e719c728..f92378f3bb 100644 --- a/ipc/chromium/src/base/message_pump_glib.cc +++ b/ipc/chromium/src/base/message_pump_glib.cc @@ -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]; diff --git a/ipc/chromium/src/chrome/common/transport_dib.h b/ipc/chromium/src/chrome/common/transport_dib.h index e3c40768c0..f40a97d17a 100644 --- a/ipc/chromium/src/chrome/common/transport_dib.h +++ b/ipc/chromium/src/chrome/common/transport_dib.h @@ -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 |