[Libreoffice-commits] .: testtools/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Sun Sep 16 01:26:10 PDT 2012


 testtools/source/performance/ubtest.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5bfa5cb86a9737ad97e068fd9d1ea40397d2ac3f
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sun Sep 16 10:24:59 2012 +0200

    Fix duplicate branches for if and else
    
    Change-Id: Ic602fd4df63e6807f49c256ce7849ae587eeb82d

diff --git a/testtools/source/performance/ubtest.cxx b/testtools/source/performance/ubtest.cxx
index a8ca0e0..356fd6d 100644
--- a/testtools/source/performance/ubtest.cxx
+++ b/testtools/source/performance/ubtest.cxx
@@ -1035,7 +1035,7 @@ sal_Int32 TestImpl::run( const Sequence< OUString > & rArgs )
         out( " log=" );
         if (stream == stderr)
             out( "stderr" );
-        else if (stream == stderr)
+        else if (stream == stdout)
             out( "stdout loop=" );
         else
             out( aLogStr );


More information about the Libreoffice-commits mailing list