patch 8.2.2410: build failure without the +profiling feature
Problem: Build failure without the +profiling feature.
Solution: Add dummy argument to macro.
diff --git a/src/vim9.h b/src/vim9.h
index 76ec403..82fdfe6 100644
--- a/src/vim9.h
+++ b/src/vim9.h
@@ -415,6 +415,6 @@
((do_profiling == PROF_YES && (dfunc->df_ufunc)->uf_profiling) \
? (dfunc)->df_instr_prof : (dfunc)->df_instr)
#else
-# define PROFILING FALSE
+# define PROFILING(ufunc) FALSE
# define INSTRUCTIONS(dfunc) ((dfunc)->df_instr)
#endif