Show
Ignore:
Timestamp:
06/13/08 02:42:18 (7 months ago)
Author:
flynd
Message:

Removed compiler warnings.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/src/file.cpp

    r6245 r6276  
    642642  // Backtrack until we find a non-space character, then move forward to the 
    643643  // next time, thus putting the end of section where it belongs 
    644   while (isspace(m_szBuffer[--nTempPos])); 
    645   while (m_szBuffer[++nTempPos] != '\n'); 
     644  while (isspace(m_szBuffer[--nTempPos])) 
     645    ; 
     646  while (m_szBuffer[++nTempPos] != '\n') 
     647    ; 
    646648 
    647649  m_nSectionEnd = nTempPos + 1;