From 332a317ea5d1f5a36a74c83fb4b0bc1632f8c252 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Fri, 13 Dec 2013 23:10:39 +0100 Subject: cppcheck: fix same expression, ')' = 29 not 28 in ascii' Change-Id: I90e22a5532f59b190c59d267256b5e889e82da74 --- cppuhelper/source/unourl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cppuhelper/source/unourl.cxx b/cppuhelper/source/unourl.cxx index a9aa133f7fdc..9561aeba60e6 100644 --- a/cppuhelper/source/unourl.cxx +++ b/cppuhelper/source/unourl.cxx @@ -239,7 +239,7 @@ inline UnoUrl::Impl * UnoUrl::Impl::create(rtl::OUString const & rUrl) sal_Unicode c = rUrl[j]; if (!isAlphanum(c) && c != 0x21 && c != 0x24 // '!', '$' && c != 0x26 && c != 0x27 && c != 0x28 // '&', ''', '(' - && c != 0x28 && c != 0x2A && c != 0x2B // ')', '*', '+' + && c != 0x29 && c != 0x2A && c != 0x2B // ')', '*', '+' && c != 0x2C && c != 0x2D && c != 0x2E // ',', '-', '.' && c != 0x2F && c != 0x3A && c != 0x3D // '/', ':', '=' && c != 0x3F && c != 0x40 && c != 0x5F // '?', '@', '_' -- cgit