diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2017-03-11 13:48:02 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2017-03-11 15:41:54 +0100 |
commit | 9cfce3cf6b531b01296dbebc1cc7844c1e049478 (patch) | |
tree | b8d5cba35bce6ed5952543c2d41ed624f5ea295f /NK_C_API.h | |
parent | aa9baa019bb53d83625e0a296efc744ef351fd45 (diff) | |
download | libnitrokey-9cfce3cf6b531b01296dbebc1cc7844c1e049478.tar.gz libnitrokey-9cfce3cf6b531b01296dbebc1cc7844c1e049478.tar.bz2 |
Fix compilation warnings
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'NK_C_API.h')
-rw-r--r-- | NK_C_API.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -244,7 +244,7 @@ NK_C_API int NK_totp_get_time(); * @param new_PIN char[25](Pro) new PIN * @return command processing error code */ -NK_C_API int NK_change_admin_PIN(char *current_PIN, char *new_PIN); +NK_C_API int NK_change_admin_PIN(const char *current_PIN, const char *new_PIN); /** * Change user PIN @@ -252,7 +252,7 @@ NK_C_API int NK_change_admin_PIN(char *current_PIN, char *new_PIN); * @param new_PIN char[25](Pro) new PIN * @return command processing error code */ -NK_C_API int NK_change_user_PIN(char *current_PIN, char *new_PIN); +NK_C_API int NK_change_user_PIN(const char *current_PIN, const char *new_PIN); /** |