From 3eb99bf4cb921d5cdb504b46edcecef809bd9c39 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sat, 5 Sep 2009 15:40:31 +0000 Subject: [PATCH] signed/unsigned warning fix. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31294 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Server.cpp b/src/Server.cpp index 51007d85a3..5d656d7d51 100644 --- a/src/Server.cpp +++ b/src/Server.cpp @@ -352,7 +352,7 @@ void LyXComm::pipeServer() void LyXComm::closeHandles(DWORD index) { - for (int i = 0; i <= index; ++i) { + for (int i = 0; i <= int(index); ++i) { if (event_[i]) { ResetEvent(event_[i]); CloseHandle(event_[i]); -- 2.39.5