From 82c4eb38804e011cfd855bc9e292f7533bfe4c2f Mon Sep 17 00:00:00 2001 From: weidai Date: Thu, 6 Apr 2006 21:20:25 +0000 Subject: merge in changes by denis bider and fix compile on gcc 3.4.4 and MSVC 6 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@219 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- zinflate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zinflate.cpp') diff --git a/zinflate.cpp b/zinflate.cpp index 4a43420..4018e11 100644 --- a/zinflate.cpp +++ b/zinflate.cpp @@ -242,7 +242,7 @@ void Inflator::OutputString(const byte *string, size_t length) { while (length) { - size_t len = STDMIN(length, m_window.size() - m_current); + size_t len = UnsignedMin(length, m_window.size() - m_current); memcpy(m_window + m_current, string, len); m_current += len; if (m_current == m_window.size()) -- cgit v1.2.1