Changeset 6489 for trunk/licq
- Timestamp:
- 08/17/08 23:47:18 (4 months ago)
- Files:
-
- 1 modified
-
trunk/licq/src/buffer.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/src/buffer.cpp
r6447 r6489 879 879 char *CBuffer::print(char *&p) 880 880 { 881 static const unsigned long MAX_DATA_SIZE = 8 * 1024;882 881 static const char BUFFER_BLANKS[] = " "; 883 882 static const unsigned long SPACE_PER_LINE = … … 887 886 char szAscii[16 + 1]; 888 887 szAscii[16] = '\0'; 889 890 if (nBytesToPrint > MAX_DATA_SIZE)891 {892 nBytesToPrint = MAX_DATA_SIZE;893 }894 888 895 889 unsigned short nLenBuf = ((int)(nBytesToPrint / 16) + 1) *
