summaryrefslogtreecommitdiff
path: root/parted
diff options
context:
space:
mode:
authorBrian C. Lane <bcl@redhat.com>2020-11-12 16:49:29 -0800
committerBrian C. Lane <bcl@redhat.com>2020-11-20 14:00:58 -0800
commit6e34cb98ddef0c9fd47359a2006265e7251e8830 (patch)
treeb1fdaf6ecc231cc3d251900ef16289e11f1b593b /parted
parent45e4c689c81cc55f849d3f90168a6b89c0168191 (diff)
downloadparted-6e34cb98ddef0c9fd47359a2006265e7251e8830.tar.gz
ui: Fix gcc 10 warning about snprintf truncating an int
Double the storage to 20 bytes.
Diffstat (limited to 'parted')
-rw-r--r--parted/ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/parted/ui.c b/parted/ui.c
index 8e1f2fe..73fdcf5 100644
--- a/parted/ui.c
+++ b/parted/ui.c
@@ -909,11 +909,11 @@ command_line_get_word (const char* prompt, const char* def,
int
command_line_get_integer (const char* prompt, int* value)
{
- char def_str [10];
+ char def_str [20];
char* input;
long ret;
- snprintf (def_str, 10, "%d", *value);
+ snprintf (def_str, 20, "%d", *value);
input = command_line_get_word (prompt, *value ? def_str : NULL,
NULL, 1);
if (!input)