mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-05 03:47:45 +03:00
constify
This commit is contained in:
parent
3bd2ae56da
commit
9b3a4f28fd
1 changed files with 1 additions and 1 deletions
|
@ -621,7 +621,7 @@ write_pk_file(const char *pk_file, const PubkeyStruct *pubkey_struct)
|
||||||
}
|
}
|
||||||
xfprintf(fp, COMMENT_PREFIX "minisign public key %" PRIX64 "\n",
|
xfprintf(fp, COMMENT_PREFIX "minisign public key %" PRIX64 "\n",
|
||||||
le64_load(pubkey_struct->keynum_pk.keynum));
|
le64_load(pubkey_struct->keynum_pk.keynum));
|
||||||
xfput_b64(fp, (unsigned char *) (void *) pubkey_struct,
|
xfput_b64(fp, (const unsigned char *) (const void *) pubkey_struct,
|
||||||
sizeof *pubkey_struct);
|
sizeof *pubkey_struct);
|
||||||
xfclose(fp);
|
xfclose(fp);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue