connectivity/source/drivers/dbase/DTable.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 94d35d1cc5bea93b87aea86459ce5e8f1686600c
Author:     Stephan Bergmann <[email protected]>
AuthorDate: Tue Jul 19 09:20:27 2022 +0200
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Tue Jul 19 10:20:20 2022 +0200

    No need to cast to char here
    
    ...similar to 85d15cfaf9b0665d907e099d6588dea0ced556ff "No need to cast to 
char
    here"
    
    Change-Id: I9f8b226e90d67f49fb38f9139c03529add787c64
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137214
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <[email protected]>

diff --git a/connectivity/source/drivers/dbase/DTable.cxx 
b/connectivity/source/drivers/dbase/DTable.cxx
index 1f942ad08e1c..e68eda511346 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -785,7 +785,7 @@ bool ODbaseTable::fetchRow(OValueRefRow& _rRow, const 
OSQLColumns & _rCols, bool
         return false;
 
     // Read the data
-    bool bIsCurRecordDeleted = static_cast<char>(m_pBuffer[0]) == '*';
+    bool bIsCurRecordDeleted = m_pBuffer[0] == '*';
 
     // only read the bookmark
 

Reply via email to