dwfl_get_debuginfod_client: add dummy parameter for --disable-libdebuginfod
authorShahab Vahedi <shahab@synopsys.com>
Mon, 18 Jul 2022 17:44:06 +0000 (13:44 -0400)
committerFrank Ch. Eigler <fche@redhat.com>
Mon, 18 Jul 2022 17:44:06 +0000 (13:44 -0400)
Since the stub version of "dwfl_get_debuginfod_client" doesn't name its
parameter, building elfuitls fails on a system with gcc 10.2.1:

-----------------------------------------------------------------------------
$ ./configure ... --disable-libdebuginfod
$ make
  Making all in libdwfl
    CC       debuginfod-client.o
  /src/libdwfl/debuginfod-client.c: In function 'dwfl_get_debuginfod_client':
  /src/libdwfl/debuginfod-client.c:145:29: error: parameter name omitted
    145 | dwfl_get_debuginfod_client (Dwfl *)
        |                             ^~~~~~
  make[2]: *** [Makefile:707: debuginfod-client.o] Error 1
-----------------------------------------------------------------------------

This fixes the issue by providing a name for the unused parameter.

Signed-off-by: Shahab Vahedi <shahab@synopsys.com>
libdwfl/ChangeLog
libdwfl/debuginfod-client.c

index 6ade1af..75c5394 100644 (file)
@@ -1,3 +1,8 @@
+2022-07-18  Shahab Vahedi  <shahab@synopsys.com>
+
+       * debuginfod-client.c (dwfl_get_debuginfod_client stub):
+       Add a name to the sole parameter.
+
 2022-07-13  Mark Wielaard  <mark@klomp.org>
 
        * debuginfod-client.c (dwfl_get_debuginfod_client): Add INTDEF.
index 87af73a..d581daa 100644 (file)
@@ -142,7 +142,7 @@ __libdwfl_debuginfod_init (void)
 #else // ENABLE_LIBDEBUGINFOD
 
 debuginfod_client *
-dwfl_get_debuginfod_client (Dwfl *)
+dwfl_get_debuginfod_client (Dwfl *dummy __attribute__ ((unused)))
 {
   return NULL;
 }