From 98c90acdfc9813ad8789974df1705e0a240194fd Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 25 Jul 2016 13:22:38 +0200 Subject: loplugins: more consistent naming of output files Change-Id: Ia26f697cb16078f235c94e4cff449a60c1bbd74e --- compilerplugins/clang/constantparam.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compilerplugins/clang/constantparam.cxx') diff --git a/compilerplugins/clang/constantparam.cxx b/compilerplugins/clang/constantparam.cxx index 88d0ec0a73e9..2a44939a4b60 100644 --- a/compilerplugins/clang/constantparam.cxx +++ b/compilerplugins/clang/constantparam.cxx @@ -21,7 +21,7 @@ The process goes something like this: $ make check $ make FORCE_COMPILE_ALL=1 COMPILER_PLUGIN_TOOL='constantparam' check - $ ./compilerplugins/clang/constantparam.py constantparam.log + $ ./compilerplugins/clang/constantparam.py */ namespace { @@ -84,7 +84,7 @@ public: output += s.returnType + "\t" + s.nameAndParams + "\t" + s.sourceLocation + "\t" + s.paramName + "\t" + s.callValue + "\n"; ofstream myfile; - myfile.open( SRCDIR "/constantparam.log", ios::app | ios::out); + myfile.open( SRCDIR "/loplugin.constantparam.log", ios::app | ios::out); myfile << output; myfile.close(); } -- cgit