aboutsummaryrefslogtreecommitdiff
path: root/NK_C_API.h
diff options
context:
space:
mode:
authorRobin Krahl <me@robin-krahl.de>2019-01-17 00:37:30 +0100
committerRobin Krahl <me@robin-krahl.de>2019-01-17 00:37:30 +0100
commitf6ae756f421f668b53131f7d924a6303f3b99c73 (patch)
treea4269e4c5210339abfb31362e43d2bf29ee633b1 /NK_C_API.h
parentdee882fd21cd932c2642d170620862e783284d3b (diff)
downloadlibnitrokey-fix/get-firmware-version.tar.gz
libnitrokey-fix/get-firmware-version.tar.bz2
Return firmware version parts as uint8_t instead of intfix/get-firmware-version
The firmware version parts returned by the Nitrokey devices are uint8_t values. This is part of the public API as part of the NK_storage_status struct. For consistency with this API, this patch changes the functions NK_get_major_firmware_version and NK_get_minor_firmware_version to return uint8_t instead of int.
Diffstat (limited to 'NK_C_API.h')
-rw-r--r--NK_C_API.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/NK_C_API.h b/NK_C_API.h
index 3effbfe..b4d7d7a 100644
--- a/NK_C_API.h
+++ b/NK_C_API.h
@@ -568,13 +568,13 @@ extern "C" {
* Get device's major firmware version
* @return major part of the version number (e.g. 0 from 0.48, 0 from 0.7 etc.)
*/
- NK_C_API int NK_get_major_firmware_version();
+ NK_C_API uint8_t NK_get_major_firmware_version();
/**
* Get device's minor firmware version
* @return minor part of the version number (e.g. 7 from 0.7, 48 from 0.48 etc.)
*/
- NK_C_API int NK_get_minor_firmware_version();
+ NK_C_API uint8_t NK_get_minor_firmware_version();
/**
* Function to determine unencrypted volume PIN type