summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-09-16 20:06:59 -0400
committermidipix <writeonce@midipix.org>2016-09-16 20:06:59 -0400
commitdfc432f0b7a5e8ed036b233f9255da89b4c07541 (patch)
tree70717da26de748c569f417309be9b65508897a14 /src
parent2bdcda2e64180f27c8555520d69dec7ecdc1c1cc (diff)
downloadptycon-dfc432f0b7a5e8ed036b233f9255da89b4c07541.tar.bz2
ptycon-dfc432f0b7a5e8ed036b233f9255da89b4c07541.tar.xz
ptyc_loop_thread_entry(): fix signature.
Diffstat (limited to 'src')
-rw-r--r--src/console/ptyc_console_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/ptyc_console_alloc.c b/src/console/ptyc_console_alloc.c
index 7beee15..a73e4de 100644
--- a/src/console/ptyc_console_alloc.c
+++ b/src/console/ptyc_console_alloc.c
@@ -30,7 +30,7 @@ struct ptyc_loop_thread_ctx {
struct ptyc_driver_ctx_impl * ictx;
};
-static int ptyc_loop_thread_entry(void * ctx)
+static int __stdcall ptyc_loop_thread_entry(void * ctx)
{
struct ptyc_loop_thread_ctx * xctx;