From d23da21c0126143c5300efa850aa60d29006d093 Mon Sep 17 00:00:00 2001 From: Brian West <brian@freeswitch.org> Date: Thu, 21 May 2009 14:55:58 +0000 Subject: [PATCH] fix windows build git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13410 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_core.c b/src/switch_core.c index 79daffe07e..45dfe7de7c 100644 --- a/src/switch_core.c +++ b/src/switch_core.c @@ -1033,7 +1033,7 @@ static void switch_core_set_serial(void) char path[256]; int fd = -1, write_fd = -1; - ssize_t bytes = 0; + switch_ssize_t bytes = 0; switch_snprintf(path, sizeof(path), "%s%sfreeswitch.serial", SWITCH_GLOBAL_dirs.conf_dir, SWITCH_PATH_SEPARATOR);