gdb/csky fix build error in ubuntu20_04
authorJiangshuai Li <jiangshuai_li@linux.alibaba.com>
Tue, 9 Aug 2022 02:13:57 +0000 (10:13 +0800)
committerJiangshuai Li <jiangshuai_li@linux.alibaba.com>
Tue, 9 Aug 2022 02:13:57 +0000 (10:13 +0800)
build error in: https://builder.sourceware.org/buildbot/#/builders/170/builds/246
...
../../binutils-gdb/gdb/csky-linux-tdep.c: In function ‘void
csky_supply_fregset(const regset*, regcache*, int, const void*, size_t)’:
../../binutils-gdb/gdb/csky-linux-tdep.c:194:18: error: format ‘%ld’
expects argument of type ‘long int’, but argument 2 has type ‘size_t’
{aka ‘unsigned int’} [-Werror=format=]
   194 |       warning (_("Unknow size %ld of section .reg2, can not get
value"
       |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   195 |    " of float registers."), len);
...

Fix it via using %s vs pulongest suggested by Tom.

gdb/csky-linux-tdep.c

index 106f629b8b0868168a944140be84f5d8f8347403..ae5d2bba33c5647e6f174d489af0b0c19521c309 100644 (file)
@@ -191,8 +191,8 @@ csky_supply_fregset (const struct regset *regset,
     }
   else
     {
-      warning (_("Unknow size %ld of section .reg2, can not get value"
-                " of float registers."), len);
+      warning (_("Unknow size %s of section .reg2, can not get value"
+                " of float registers."), pulongest (len));
     }
 }
 
@@ -272,8 +272,8 @@ csky_collect_fregset (const struct regset *regset,
     }
   else
     {
-      warning (_("Unknow size %ld of section .reg2, will not set value"
-                " of float registers."), len);
+      warning (_("Unknow size %s of section .reg2, will not set value"
+                " of float registers."), pulongest (len));
     }
 }