summaryrefslogtreecommitdiff
path: root/tools/bio.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2020-04-17 20:57:34 +0100
committerColin Watson <cjwatson@debian.org>2020-04-18 09:48:21 +0100
commitdf7226c4b684fd229dc046388225c69ded877721 (patch)
treee69014e1ee868c4ec178b8a36baae7de31786beb /tools/bio.c
parentf794345c2d734f593da8ed7754e5dbb5809c688d (diff)
parent75073d0a8478441cc97a6efa10b566c5fb1dac81 (diff)
Update upstream source from tag 'upstream/1.4.0'
Update to upstream version '1.4.0' with Debian dir 64889867df57bd13ea0cb964223697d378d391ce
Diffstat (limited to 'tools/bio.c')
-rw-r--r--tools/bio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/bio.c b/tools/bio.c
index b8f9b38..135b055 100644
--- a/tools/bio.c
+++ b/tools/bio.c
@@ -253,11 +253,10 @@ void
253bio_info(fido_dev_t *dev) 253bio_info(fido_dev_t *dev)
254{ 254{
255 fido_bio_info_t *i = NULL; 255 fido_bio_info_t *i = NULL;
256 int r;
257 256
258 if ((i = fido_bio_info_new()) == NULL) 257 if ((i = fido_bio_info_new()) == NULL)
259 errx(1, "fido_bio_info_new"); 258 errx(1, "fido_bio_info_new");
260 if ((r = fido_bio_dev_get_info(dev, i)) != FIDO_OK) { 259 if (fido_bio_dev_get_info(dev, i) != FIDO_OK) {
261 fido_bio_info_free(&i); 260 fido_bio_info_free(&i);
262 return; 261 return;
263 } 262 }