diff options
Diffstat (limited to 'meta-oe/recipes-connectivity/umip/files/0001-Add-format-string-to-fprintf-call.patch')
-rw-r--r-- | meta-oe/recipes-connectivity/umip/files/0001-Add-format-string-to-fprintf-call.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/umip/files/0001-Add-format-string-to-fprintf-call.patch b/meta-oe/recipes-connectivity/umip/files/0001-Add-format-string-to-fprintf-call.patch new file mode 100644 index 0000000000..8e5f4da362 --- /dev/null +++ b/meta-oe/recipes-connectivity/umip/files/0001-Add-format-string-to-fprintf-call.patch | |||
@@ -0,0 +1,26 @@ | |||
1 | From a0ad5128d14b022239445e251cf4a9826e86aa96 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 27 Jun 2017 07:48:31 -0700 | ||
4 | Subject: [PATCH] Add format string to fprintf() call | ||
5 | |||
6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
7 | --- | ||
8 | src/vt.c | 2 +- | ||
9 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
10 | |||
11 | diff --git a/src/vt.c b/src/vt.c | ||
12 | index 795d393..a533d3d 100644 | ||
13 | --- a/src/vt.c | ||
14 | +++ b/src/vt.c | ||
15 | @@ -499,7 +499,7 @@ static int vt_cmd_dump_candidates(const struct vt_handle *vh, | ||
16 | } | ||
17 | llen += cmdlen; | ||
18 | |||
19 | - ret = fprintf(vh->vh_stream, e->cmd); | ||
20 | + ret = fprintf(vh->vh_stream, "%s", e->cmd); | ||
21 | if (ret < 0) | ||
22 | return ret; | ||
23 | |||
24 | -- | ||
25 | 2.13.2 | ||
26 | |||