From 2115232a16d81d28dbdb8042ed8e9316858514c6 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Fri, 4 Sep 2020 20:59:13 +0200 Subject: Cleanup: Clang-Tidy readability-inconsistent-declaration-parameter-name fix No functional changes --- source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc') diff --git a/source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc b/source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc index 16bdc2d6115..98a2d09c352 100644 --- a/source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc +++ b/source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc @@ -153,7 +153,7 @@ void deg_debug_stats_gnuplot(const DebugContext &ctx) } // namespace blender void DEG_debug_stats_gnuplot(const Depsgraph *depsgraph, - FILE *f, + FILE *fp, const char *label, const char *output_filename) { @@ -161,7 +161,7 @@ void DEG_debug_stats_gnuplot(const Depsgraph *depsgraph, return; } deg::DebugContext ctx; - ctx.file = f; + ctx.file = fp; ctx.graph = (deg::Depsgraph *)depsgraph; ctx.label = label; ctx.output_filename = output_filename; -- cgit v1.2.3