summaryrefslogtreecommitdiffstats
path: root/desktop/unx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-08 09:39:35 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-08 09:49:02 +0200
commit1d3357ccf7a464003e9aa56cdc9dd86d2ffa17b6 (patch)
treecdbda768e376e63016357eecce0e8c969f2111df /desktop/unx
parentSilence sal_Bool -> sal_IntPtr Link return value mismatches for now (diff)
downloadcore-1d3357ccf7a464003e9aa56cdc9dd86d2ffa17b6.tar.gz
core-1d3357ccf7a464003e9aa56cdc9dd86d2ffa17b6.zip
read_percent returns ProgressStatus, not sal_Bool
Change-Id: I6e1c1f88b28db2728b2f29ea47c3e86ef8983697
Diffstat (limited to 'desktop/unx')
-rw-r--r--desktop/unx/source/start.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c
index 3732737b955e..ce856ec4704f 100644
--- a/desktop/unx/source/start.c
+++ b/desktop/unx/source/start.c
@@ -541,7 +541,7 @@ read_percent( ChildInfo *info, int *pPercent )
/* from the last call */
int nNotProcessed = nRead - ( pNext - pBuffer );
if ( nNotProcessed >= BUFFER_LEN )
- return sal_False;
+ return ProgressContinue;
memmove( pBuffer, pNext, nNotProcessed );