summaryrefslogtreecommitdiff
path: root/protocols/Sametime/src/glib
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-12-26 20:31:39 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-12-26 20:31:39 +0300
commitcddcd7483a7c472598af098e759e5d309024f606 (patch)
treeb0a227d6e087c41958cc84d27bc323353248aae5 /protocols/Sametime/src/glib
parent1039b2829a264280493ba0fa979214fe024dc70c (diff)
DWORD -> uint32_t
Diffstat (limited to 'protocols/Sametime/src/glib')
-rw-r--r--protocols/Sametime/src/glib/giowin32.c2
-rw-r--r--protocols/Sametime/src/glib/gmain.c2
-rw-r--r--protocols/Sametime/src/glib/gutils.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Sametime/src/glib/giowin32.c b/protocols/Sametime/src/glib/giowin32.c
index 3a0b92655e..80858b114c 100644
--- a/protocols/Sametime/src/glib/giowin32.c
+++ b/protocols/Sametime/src/glib/giowin32.c
@@ -847,7 +847,7 @@ g_io_win32_check (GSource *source)
else if (watch->channel->is_readable)
{
INPUT_RECORD buffer;
- DWORD n;
+ DWORD n;
if (PeekConsoleInput ((HANDLE) watch->pollfd.fd, &buffer, 1, &n) &&
n == 1)
{
diff --git a/protocols/Sametime/src/glib/gmain.c b/protocols/Sametime/src/glib/gmain.c
index 5bba96d60d..e62edfba54 100644
--- a/protocols/Sametime/src/glib/gmain.c
+++ b/protocols/Sametime/src/glib/gmain.c
@@ -3871,7 +3871,7 @@ g_child_watch_check (GSource *source)
if (child_exited)
{
- DWORD child_status;
+ DWORD child_status;
/*
* Note: We do _not_ check for the special value of STILL_ACTIVE
diff --git a/protocols/Sametime/src/glib/gutils.c b/protocols/Sametime/src/glib/gutils.c
index 49bbadbee0..0518d31638 100644
--- a/protocols/Sametime/src/glib/gutils.c
+++ b/protocols/Sametime/src/glib/gutils.c
@@ -147,7 +147,7 @@ static HMODULE glib_dll = NULL;
BOOL WINAPI
DllMain (HINSTANCE hinstDLL,
- DWORD fdwReason,
+ uint32_t fdwReason,
LPVOID lpvReserved)
{
if (fdwReason == DLL_PROCESS_ATTACH)