[libdvdcss-devel] [PATCH 1/5] dvd_region: Intentionally discard the return value from getchar()

Diego Biurrun diego at biurrun.de
Fri Nov 7 21:57:42 CET 2014


---

This silences a coverity issue.  Should I mention it in the log message?

 test/dvd_region.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/dvd_region.c b/test/dvd_region.c
index 53d4693..e54cafe 100644
--- a/test/dvd_region.c
+++ b/test/dvd_region.c
@@ -143,7 +143,7 @@ static int set_region(int fd, int region)
   }
   printf("Setting drive region can only be done a finite " \
          "number of times, press Ctrl-C now to cancel!\n");
-  getchar();
+  (void) getchar();
 
   region_mask = 0xff & ~(1 << (region - 1));
   printf("Setting region to %d( %x)\n", region, region_mask);
-- 
2.1.0



More information about the libdvdcss-devel mailing list