summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/regexp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/regexp.cpp b/src/util/regexp.cpp
index 6bbdcb36a..05aacc06c 100644
--- a/src/util/regexp.cpp
+++ b/src/util/regexp.cpp
@@ -114,7 +114,7 @@ std::string String::toString() const {
std::string str;
for(unsigned int i=0; i<d_str.size(); ++i) {
unsigned char c = convertUnsignedIntToChar( d_str[i] );
- if(isprint( c )) {
+ if(isprint( c )) {
if(c == '\\') {
str += "\\\\";
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback