From: Václav Slavík Date: Sun, 10 Jun 2007 21:38:37 +0000 (+0000) Subject: fixed signed/unsigned comparison warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b724bafee0cbbb5c587d11e82a18c8ea5b060f26 fixed signed/unsigned comparison warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46394 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wxcrt.cpp b/src/common/wxcrt.cpp index 585b77fc98..b8961dcccd 100644 --- a/src/common/wxcrt.cpp +++ b/src/common/wxcrt.cpp @@ -576,7 +576,7 @@ int wxCRT_VsnprintfA(char *buf, size_t len, const char *format, va_list argptr) int rt = wxCRT_VsnprintfW(wbuf.data(), len, (const wchar_t*)wxConvLibc.cMB2WC(format), argptr); - if ( rt < 0 || rt >= len ) + if ( rt < 0 || rt >= (int)len ) return rt; if ( wxConvLibc.FromWChar(buf, len, wbuf) == wxCONV_FAILED )