summaryrefslogtreecommitdiff
path: root/desktop
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
parentc24212ec89a45c531e7f1ae6d45ccc34d26b8e98 (diff)
read_percent returns ProgressStatus, not sal_Bool
Change-Id: I6e1c1f88b28db2728b2f29ea47c3e86ef8983697
Diffstat (limited to 'desktop')
-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 );