diff options
Diffstat (limited to 'compilerplugins/clang/singlevalfields.py')
-rwxr-xr-x | compilerplugins/clang/singlevalfields.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/singlevalfields.py b/compilerplugins/clang/singlevalfields.py index 38fc119bbbe8..5ed8c939bcea 100755 --- a/compilerplugins/clang/singlevalfields.py +++ b/compilerplugins/clang/singlevalfields.py @@ -79,7 +79,7 @@ def natural_sort_key(s, _nsre=re.compile('([0-9]+)')): tmp1list.sort(key=lambda v: natural_sort_key(v[2])) # print out the results -with open("loplugin.singlevalfields.report", "wt") as f: +with open("compilerplugins/clang/singlevalfields.results", "wt") as f: for v in tmp1list: f.write(v[2] + "\n") f.write(" " + v[0] + "\n") |