1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

doc: Fixed variable naming.

* kbx/keybox.h: Fix naming of arguments.
* scd/ccid-driver.c (print_error) [TEST]: Add missing break.  Note
that this is anyway an impossible case.

Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
Werner Koch 2019-11-26 11:24:08 +01:00
parent c8783b3a20
commit 8fb14d3b3f
No known key found for this signature in database
GPG key ID: E3FDFF218E45B72B
2 changed files with 2 additions and 2 deletions

View file

@ -3714,7 +3714,7 @@ print_error (int err)
switch (err)
{
case 0: p = "success";
case 0: p = "success"; break;
case CCID_DRIVER_ERR_OUT_OF_CORE: p = "out of core"; break;
case CCID_DRIVER_ERR_INV_VALUE: p = "invalid value"; break;
case CCID_DRIVER_ERR_NO_DRIVER: p = "no driver"; break;