Ruby: Fix Set::print for 32-bit hosts

This patch fixes a compilation error caused by a length mismatch on
32-bit hosts. The ifdef and sprintf is replaced by a csprintf.
This commit is contained in:
Andreas Hansson 2012-03-23 06:54:25 -04:00
parent 9727b1be18
commit ca9790a2db

View file

@ -352,13 +352,9 @@ Set::print(std::ostream& out) const
}
char buff[24];
out << "[Set (" << m_nSize << ") 0x ";
out << "[Set (" << m_nSize << ")";
for (int i = m_nArrayLen - 1; i >= 0; i--) {
#ifdef _LP64
sprintf(buff,"0x %016llX ", (long long)m_p_nArray[i]);
#else
sprintf(buff,"%08X ", m_p_nArray[i]);
#endif // __32BITS__
csprintf(buff," 0x%08X", m_p_nArray[i]);
out << buff;
}
out << " ]";