CLEANUP: tools: make resolve_sym_name() take a const pointer

When 0c439d895 ("BUILD: tools: make resolve_sym_name() return a const")
was written, the pointer argument ought to have been turned to const for
more flexibility. Let's do it now.
diff --git a/src/tools.c b/src/tools.c
index 5895559..19b6122 100644
--- a/src/tools.c
+++ b/src/tools.c
@@ -4647,7 +4647,7 @@
  * The symbol's base address is returned, or NULL when unresolved, in order to
  * allow the caller to match it against known ones.
  */
-const void *resolve_sym_name(struct buffer *buf, const char *pfx, void *addr)
+const void *resolve_sym_name(struct buffer *buf, const char *pfx, const void *addr)
 {
 	const struct {
 		const void *func;