summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/include/sequoia/openpgp
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2019-03-11 09:57:32 +0100
committerNeal H. Walfield <neal@pep.foundation>2019-03-11 09:57:32 +0100
commit83ca74b2f57d322561ca54c5c4c1952e95e0d2fb (patch)
treee92f38ac0439a83388add8a73cec466f80c8ed4d /openpgp-ffi/include/sequoia/openpgp
parent7732d7ec9b43b1ee0afa73777edf8bf44a4c227a (diff)
openpgp-ffi: Avoid C++ keywords in identifiers
- public and this are C++ keywords, avoid them.
Diffstat (limited to 'openpgp-ffi/include/sequoia/openpgp')
-rw-r--r--openpgp-ffi/include/sequoia/openpgp/crypto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp-ffi/include/sequoia/openpgp/crypto.h b/openpgp-ffi/include/sequoia/openpgp/crypto.h
index 530208a0..8aeba0f7 100644
--- a/openpgp-ffi/include/sequoia/openpgp/crypto.h
+++ b/openpgp-ffi/include/sequoia/openpgp/crypto.h
@@ -31,7 +31,7 @@ typedef struct pgp_key_pair *pgp_key_pair_t;
/*/
/// Creates a new key pair.
/*/
-void pgp_key_pair_new (pgp_key_t public, pgp_mpi_t secret);
+void pgp_key_pair_new (pgp_key_t pub, pgp_mpi_t secret);
/*/
/// Frees a key pair.