diff options
Diffstat (limited to 'compilerplugins/clang/constantparam.cxx')
-rw-r--r-- | compilerplugins/clang/constantparam.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/constantparam.cxx b/compilerplugins/clang/constantparam.cxx index cb5a380bac73..3cbcbc8e4043 100644 --- a/compilerplugins/clang/constantparam.cxx +++ b/compilerplugins/clang/constantparam.cxx @@ -86,7 +86,7 @@ public: output += s.returnType + "\t" + s.nameAndParams + "\t" + s.sourceLocation + "\t" + s.paramName + "\t" + s.paramType + "\t" + s.callValue + "\n"; std::ofstream myfile; - myfile.open( SRCDIR "/loplugin.constantparam.log", std::ios::app | std::ios::out); + myfile.open( WORKDIR "/loplugin.constantparam.log", std::ios::app | std::ios::out); myfile << output; myfile.close(); } |