macro.c: In function ‘mbopt’:
macro.c:895:19: warning: unused variable ‘me’ [-Wunused-variable]
  895 |     rpmMacroEntry me = mb->me;
      |                   ^~

rpmlua.c: In function ‘fd_seek’:
rpmlua.c:985:22: warning: unused variable ‘mode’ [-Wunused-variable]
  985 |     static const int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END};
      |                      ^~~~
---
 rpmio/macro.c  | 1 -
 rpmio/rpmlua.c | 1 -
 2 files changed, 2 deletions(-)

diff --git a/rpmio/macro.c b/rpmio/macro.c
index 800861418..1edcb39e6 100644
--- a/rpmio/macro.c
+++ b/rpmio/macro.c
@@ -892,7 +892,6 @@ static void splitQuoted(ARGV_t *av, const char * str, const 
char * seps)
 static int mbopt(int c, const char *oarg, int oint, void *data)
 {
     MacroBuf mb = data;
-    rpmMacroEntry me = mb->me;
     char *name = NULL, *body = NULL;
 
     /* Define option macros. */
diff --git a/rpmio/rpmlua.c b/rpmio/rpmlua.c
index 8314a296c..2ea985e6e 100644
--- a/rpmio/rpmlua.c
+++ b/rpmio/rpmlua.c
@@ -982,7 +982,6 @@ static int fd_flush(lua_State *L)
 
 static int fd_seek(lua_State *L)
 {
-    static const int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END};
     static const char *const modenames[] = {"set", "cur", "end", NULL};
     FD_t *fdp = checkfd(L, 1);
     int op = luaL_checkoption(L, 2, "cur", modenames);
-- 
2.18.4

_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to