mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpg,w32: Fix a format string error.
* g10/keyring.c (keyring_search): Fix format string for off_t. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
501436ab0f
commit
7c856f9914
@ -1216,8 +1216,8 @@ keyring_search (KEYRING_HANDLE hd, KEYDB_SEARCH_DESC *desc,
|
||||
goto real_found;
|
||||
|
||||
if (DBG_LOOKUP)
|
||||
log_debug ("%s: packet starting at offset %zx matched descriptor %zd\n",
|
||||
__func__, offset, n);
|
||||
log_debug ("%s: packet starting at offset %lld matched descriptor %zu\n"
|
||||
, __func__, (long long)offset, n);
|
||||
|
||||
/* Record which desc we matched on. Note this value is only
|
||||
meaningful if this function returns with no errors. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user