summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-10-02 21:26:11 +0200
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-10-02 21:37:33 +0200
commit94956f8fba498d5d34a88a7e26b0418a4a0e9e6d (patch)
tree1171af980ca002befce499e0e63e6aa1ffac1611
parent2ff8abbd40feee90dbac8788efba2218b546df6c (diff)
firstboot: silence coverity
CID#1237537
-rw-r--r--src/firstboot/firstboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c
index 215c059ee..f586c2ef7 100644
--- a/src/firstboot/firstboot.c
+++ b/src/firstboot/firstboot.c
@@ -68,7 +68,7 @@ static bool press_any_key(void) {
printf("-- Press any key to proceed --");
fflush(stdout);
- read_one_char(stdin, &k, USEC_INFINITY, &need_nl);
+ (void) read_one_char(stdin, &k, USEC_INFINITY, &need_nl);
if (need_nl)
putchar('\n');