From: Abdelrazak Younes Date: Sat, 5 Sep 2009 15:40:31 +0000 (+0000) Subject: signed/unsigned warning fix. X-Git-Tag: 2.0.0~5551 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3eb99bf4cb921d5cdb504b46edcecef809bd9c39;p=features.git signed/unsigned warning fix. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31294 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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]);