diff options
author | 2004-01-14 19:56:05 +0000 | |
---|---|---|
committer | 2004-01-14 19:56:05 +0000 | |
commit | d895a6ac5c018b26055fa8c7e8939c563ec20057 (patch) | |
tree | c883d3145e16ed2f5bdbc4e57ffed95d8aacacb3 /lib/libssl/src | |
parent | Fix printf format string. ok deraadt@ (diff) | |
download | wireguard-openbsd-d895a6ac5c018b26055fa8c7e8939c563ec20057.tar.xz wireguard-openbsd-d895a6ac5c018b26055fa8c7e8939c563ec20057.zip |
Fix printf format string. ok markus@
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/apps/dhparam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/apps/dhparam.c b/lib/libssl/src/apps/dhparam.c index dc00355b95b..8fe3f18d7c6 100644 --- a/lib/libssl/src/apps/dhparam.c +++ b/lib/libssl/src/apps/dhparam.c @@ -501,7 +501,7 @@ bad: printf("\tif ((dh->p == NULL) || (dh->g == NULL))\n"); printf("\t\t{ DH_free(dh); return(NULL); }\n"); if (dh->length) - printf("\tdh->length = %ld;\n", dh->length); + printf("\tdh->length = %d;\n", dh->length); printf("\treturn(dh);\n\t}\n"); OPENSSL_free(data); } |