build: Replace PLUGIN_RENEPAY_HDRS json.c with json.h in Makefile.
What changed, and why it matters
This is a one-line build system fix in a Makefile. It changes a list of header files so that it references 'json.h' instead of 'json.c'. There is no runtime code change and no security relevance.
No security action needed. Treat as a normal build hygiene fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit corrects PLUGIN_RENEPAY_HDRS in plugins/renepay/Makefile, replacing plugins/renepay/json.c with plugins/renepay/json.h. This is a build dependency/metadata correction; json.c belongs in source/object lists, not a header list. No functional or security-affecting code is modified.
Changed components
plugins/renepay/MakefileInspect captured patch +1 / −1
diff --git a/plugins/renepay/Makefile b/plugins/renepay/Makefile
index d28ca330..4d931eca 100644
--- a/plugins/renepay/Makefile
+++ b/plugins/renepay/Makefile
@@ -34,7 +34,7 @@ PLUGIN_RENEPAY_HDRS := \
plugins/renepay/uncertainty.h \
plugins/renepay/mods.h \
plugins/renepay/errorcodes.h \
- plugins/renepay/json.c
+ plugins/renepay/json.h
PLUGIN_RENEPAY_OBJS := $(PLUGIN_RENEPAY_SRC:.c=.o)
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.