aboutsummaryrefslogtreecommitdiff
path: root/src/RegExp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/RegExp.cc')
-rw-r--r--src/RegExp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RegExp.cc b/src/RegExp.cc
index 50748c5..c716b73 100644
--- a/src/RegExp.cc
+++ b/src/RegExp.cc
@@ -64,7 +64,7 @@ m_regex(0) {
64 errstr = new char[size]; 64 errstr = new char[size];
65 65
66 regerror(ret, m_regex, errstr, size); 66 regerror(ret, m_regex, errstr, size);
67 cerr<<_FBTEXT(Fluxbox, ErrorRegexp, "Error parsing regular expression", "Error parsing regular expression (following)")<<": "<<errstr<<endl; 67 cerr<<_FB_CONSOLETEXT(Fluxbox, ErrorRegexp, "Error parsing regular expression", "Error parsing regular expression (following)")<<": "<<errstr<<endl;
68 delete [] errstr; 68 delete [] errstr;
69 delete m_regex; // I don't think I regfree a failed compile? 69 delete m_regex; // I don't think I regfree a failed compile?
70 m_regex = 0; 70 m_regex = 0;