[PATCH] tests: Fix specifying constant of double type

2024-10-02 Thread Khem Raj
^ funcretval_test_struct.c:83:33: error: invalid suffix 'd' on floating constant 83 | dpoint_t dp = dmkpt (3.0d, 1.0d); | Signed-off-by: Khem Raj --- tests/funcretval_test_struct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/funcretval_test_s

Re: ☠ Buildbot (Sourceware): elfutils-snapshots-coverage - failed test (failure) (main)

2024-03-11 Thread Khem Raj
ails are available at: > > https://builder.sourceware.org/buildbot/#/builders/250/builds/105 > > > > Build state: failed test (failure) > > Revision: d74f4c1d572fbeb7454a2ffa02cbc955ea24780d > > Worker: snapshots > > Build Reason: (unknown) > > Blamelist: Kh

[PATCH] debuginfod: Remove unused variable

2024-03-09 Thread Khem Raj
^ | 1 error generated. Signed-off-by: Khem Raj --- debuginfod/debuginfod.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/debuginfod/debuginfod.cxx b/debuginfod/debuginfod.cxx index 560880f2..72617848 100644 --- a/debuginfod/debuginfod.cxx +++ b/debuginfod/debuginfod.cxx @@ -1445

Re: [PATCH] Add helper function for basename

2023-12-20 Thread Khem Raj
Hi Mark This patch seem to work fine On Thu, Dec 14, 2023 at 11:28 AM Khem Raj wrote: > > On Thu, Dec 14, 2023 at 11:22 AM Mark Wielaard wrote: > > > > Hi Khem, > > > > On Thu, Dec 14, 2023 at 10:15:00AM -0800, Khem Raj wrote: > > > Overall, this looks a

Re: [PATCH] Add helper function for basename

2023-12-14 Thread Khem Raj
On Thu, Dec 14, 2023 at 11:22 AM Mark Wielaard wrote: > > Hi Khem, > > On Thu, Dec 14, 2023 at 10:15:00AM -0800, Khem Raj wrote: > > Overall, this looks a good improvement on top of my patch so good to go. > > I will also try it in my local distro builds and see how it go

Re: [PATCH] Add helper function for basename

2023-12-14 Thread Khem Raj
On Thu, Dec 14, 2023 at 10:07 AM Mark Wielaard wrote: > > Hi Khem, > > On Sun, 2023-12-10 at 12:20 -0800, Khem Raj wrote: > > musl does not provide GNU version of basename and lately have removed > > the definiton from string.h [1] which exposes this problem. It ca

Re: [PATCH] Add helper function for basename

2023-12-13 Thread Khem Raj
On Wed, Dec 13, 2023 at 7:10 AM Mark Wielaard wrote: > > Hi Khem, > > On Tue, 2023-12-12 at 09:16 -0800, Khem Raj wrote: > > On Tue, Dec 12, 2023 at 5:18 AM Mark Wielaard wrote: > > > On Sun, 2023-12-10 at 12:20 -0800, Khem Raj wrote: > > > > musl does

Re: [PATCH] Add helper function for basename

2023-12-12 Thread Khem Raj
On Tue, Dec 12, 2023 at 5:18 AM Mark Wielaard wrote: > > Hi Khem, > > On Sun, 2023-12-10 at 12:20 -0800, Khem Raj wrote: > > musl does not provide GNU version of basename and lately have removed > > the definiton from string.h [1] which exposes this problem. It ca

[PATCH] Add helper function for basename

2023-12-10 Thread Khem Raj
POSIX implementation only. Upstream-Status: Pending [1] https://git.musl-libc.org/cgit/musl/commit/?id=725e17ed6dff4d0cd22487bb64470881e86a92e7 Signed-off-by: Khem Raj --- lib/Makefile.am | 2 +- lib/libeu.h | 1 + lib/{libeu.h => xbasenam

[PATCH] tests: Add libeu to tests needing error() API

2022-09-13 Thread Khem Raj via Elfutils-devel
A local error() impelmentation is used when libc does not provide it, therefore link in libeu.a which contains this function in tests needing error() API Signed-off-by: Khem Raj --- tests/Makefile.am | 60 +++ 1 file changed, 30 insertions(+), 30

Re: [PATCH] debuginfod/debuginfod-client.c: correct string format on 32bit arches with 64bit time_t

2021-11-20 Thread Khem Raj via Elfutils-devel
On Sat, Nov 20, 2021 at 12:11 AM Alexander Kanavin wrote: > > On Sat, 20 Nov 2021 at 05:13, Érico Nogueira wrote: >> >> For what it's worth, most of the time64 support patches that I have seen >> use "%lld" and `long long` as the type for portable representation of >> time, instead of intmax_t, b