Kaydet (Commit) 1d3357cc authored tarafından Stephan Bergmann's avatar Stephan Bergmann

read_percent returns ProgressStatus, not sal_Bool

Change-Id: I6e1c1f88b28db2728b2f29ea47c3e86ef8983697
üst c24212ec
...@@ -541,7 +541,7 @@ read_percent( ChildInfo *info, int *pPercent ) ...@@ -541,7 +541,7 @@ read_percent( ChildInfo *info, int *pPercent )
/* from the last call */ /* from the last call */
int nNotProcessed = nRead - ( pNext - pBuffer ); int nNotProcessed = nRead - ( pNext - pBuffer );
if ( nNotProcessed >= BUFFER_LEN ) if ( nNotProcessed >= BUFFER_LEN )
return sal_False; return ProgressContinue;
memmove( pBuffer, pNext, nNotProcessed ); memmove( pBuffer, pNext, nNotProcessed );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment