mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
tiptop: Fix build with ncurses 6.3+
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
+31
@@ -0,0 +1,31 @@
|
||||
From 42e99eb6c727df7c9d49586803a4bf9933a9796b Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 30 Oct 2021 10:52:42 -0700
|
||||
Subject: [PATCH] Fix a lot of -Werror=format-security errors with mvwprintw
|
||||
|
||||
In all these places a non-constant is used as a format string which
|
||||
compiler complains about. Fix by using "%s" as format.
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/helpwin.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/helpwin.c b/src/helpwin.c
|
||||
index 0d660f9..1623d9c 100644
|
||||
--- a/src/helpwin.c
|
||||
+++ b/src/helpwin.c
|
||||
@@ -61,7 +61,7 @@ void show_help_win(WINDOW* win, screen_t* screen)
|
||||
wattroff(win, A_REVERSE);
|
||||
|
||||
/* screen description */
|
||||
- mvwprintw(win, 2, 1, screen->desc);
|
||||
+ mvwprintw(win, 2, 1, "%s", screen->desc);
|
||||
|
||||
/* max size of column headers */
|
||||
for(i = 0; i < n; i++) {
|
||||
--
|
||||
2.33.1
|
||||
|
||||
@@ -8,8 +8,8 @@ SRC_URI = "http://tiptop.gforge.inria.fr/releases/${BP}.tar.gz \
|
||||
file://0001-Fix-parallel-build-problems-by-Adrian-Bunk.patch \
|
||||
file://0002-fix-reproducibility-of-build-process.patch \
|
||||
file://0001-Fix-build-when-S-B.patch \
|
||||
file://0001-Fix-a-lot-of-Werror-format-security-errors-with-mvwp.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "46ca0fdf0236f02dd2b96d347626d2a2"
|
||||
SRC_URI[sha256sum] = "51c4449c95bba34f16b429729c2f58431490665d8093efaa8643b2e1d1084182"
|
||||
|
||||
inherit autotools
|
||||
|
||||
Reference in New Issue
Block a user