diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-04-20 14:05:48 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-23 10:12:08 +0100 |
commit | 1b349efbc245c88178ad3e5a170c83ab29486605 (patch) | |
tree | 0f33c358c52e97331945ecc7a56a650cad40be7d /meta/recipes-devtools/elfutils/files | |
parent | 46edbab0b304c05bf20b3154c0433196ffbf9d8b (diff) | |
download | poky-1b349efbc245c88178ad3e5a170c83ab29486605.tar.gz |
elfutils: correct debuginfod builds on x32
(From OE-Core rev: 53cd394a6fe409eef3542832ad81ae3dd2cc6aad)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/elfutils/files')
-rw-r--r-- | meta/recipes-devtools/elfutils/files/0001-debuginfod-debuginfod-client.c-correct-string-format.patch | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/meta/recipes-devtools/elfutils/files/0001-debuginfod-debuginfod-client.c-correct-string-format.patch b/meta/recipes-devtools/elfutils/files/0001-debuginfod-debuginfod-client.c-correct-string-format.patch new file mode 100644 index 0000000000..a2737b9fe6 --- /dev/null +++ b/meta/recipes-devtools/elfutils/files/0001-debuginfod-debuginfod-client.c-correct-string-format.patch | |||
@@ -0,0 +1,60 @@ | |||
1 | From f4231bfbb61cd4962638766a7072f4295ed39150 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
3 | Date: Mon, 19 Apr 2021 23:29:10 +0200 | ||
4 | Subject: [PATCH] debuginfod/debuginfod-client.c: correct string format on x32 | ||
5 | |||
6 | Upstream-Status: Inappropriate [x32-specific; few, if any people care about it anymore] | ||
7 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
8 | --- | ||
9 | debuginfod/debuginfod-client.c | 10 +++++----- | ||
10 | 1 file changed, 5 insertions(+), 5 deletions(-) | ||
11 | |||
12 | diff --git a/debuginfod/debuginfod-client.c b/debuginfod/debuginfod-client.c | ||
13 | index de26af5..a840f23 100644 | ||
14 | --- a/debuginfod/debuginfod-client.c | ||
15 | +++ b/debuginfod/debuginfod-client.c | ||
16 | @@ -229,7 +229,7 @@ debuginfod_init_cache (char *cache_path, char *interval_path, char *maxage_path) | ||
17 | if (fd < 0) | ||
18 | return -errno; | ||
19 | |||
20 | - if (dprintf(fd, "%ld", cache_clean_default_interval_s) < 0) | ||
21 | + if (dprintf(fd, "%lld", cache_clean_default_interval_s) < 0) | ||
22 | return -errno; | ||
23 | |||
24 | /* init max age config file. */ | ||
25 | @@ -237,7 +237,7 @@ debuginfod_init_cache (char *cache_path, char *interval_path, char *maxage_path) | ||
26 | && (fd = open(maxage_path, O_CREAT | O_RDWR, DEFFILEMODE)) < 0) | ||
27 | return -errno; | ||
28 | |||
29 | - if (dprintf(fd, "%ld", cache_default_max_unused_age_s) < 0) | ||
30 | + if (dprintf(fd, "%lld", cache_default_max_unused_age_s) < 0) | ||
31 | return -errno; | ||
32 | |||
33 | return 0; | ||
34 | @@ -263,7 +263,7 @@ debuginfod_clean_cache(debuginfod_client *c, | ||
35 | if (interval_file == NULL) | ||
36 | return -errno; | ||
37 | |||
38 | - int rc = fprintf(interval_file, "%ld", cache_clean_default_interval_s); | ||
39 | + int rc = fprintf(interval_file, "%lld", cache_clean_default_interval_s); | ||
40 | fclose(interval_file); | ||
41 | |||
42 | if (rc < 0) | ||
43 | @@ -275,7 +275,7 @@ debuginfod_clean_cache(debuginfod_client *c, | ||
44 | interval_file = fopen(interval_path, "r"); | ||
45 | if (interval_file) | ||
46 | { | ||
47 | - if (fscanf(interval_file, "%ld", &clean_interval) != 1) | ||
48 | + if (fscanf(interval_file, "%lld", &clean_interval) != 1) | ||
49 | clean_interval = cache_clean_default_interval_s; | ||
50 | fclose(interval_file); | ||
51 | } | ||
52 | @@ -291,7 +291,7 @@ debuginfod_clean_cache(debuginfod_client *c, | ||
53 | max_unused_file = fopen(max_unused_path, "r"); | ||
54 | if (max_unused_file) | ||
55 | { | ||
56 | - if (fscanf(max_unused_file, "%ld", &max_unused_age) != 1) | ||
57 | + if (fscanf(max_unused_file, "%lld", &max_unused_age) != 1) | ||
58 | max_unused_age = cache_default_max_unused_age_s; | ||
59 | fclose(max_unused_file); | ||
60 | } | ||