diff options
author | 2001-07-07 00:23:54 +0000 | |
---|---|---|
committer | 2001-07-07 00:23:54 +0000 | |
commit | 7b34b05a57b318f71c835d2699b3c31c93882475 (patch) | |
tree | fb067ea4844f734e450711baef0da1c3e9a1436e | |
parent | Initialize missing parts of struct nfs_args nfsdefargs (diff) | |
download | wireguard-openbsd-7b34b05a57b318f71c835d2699b3c31c93882475.tar.xz wireguard-openbsd-7b34b05a57b318f71c835d2699b3c31c93882475.zip |
another size_t printf format missmatch
-rw-r--r-- | lib/libkeynote/keynote-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libkeynote/keynote-keygen.c b/lib/libkeynote/keynote-keygen.c index 5ff49c5bb04..ba34d96226e 100644 --- a/lib/libkeynote/keynote-keygen.c +++ b/lib/libkeynote/keynote-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: keynote-keygen.c,v 1.12 2001/03/08 21:50:11 angelos Exp $ */ +/* $OpenBSD: keynote-keygen.c,v 1.13 2001/07/07 00:23:54 millert Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu) * @@ -162,7 +162,7 @@ keynote_keygen(int argc, char *argv[]) if (strlen(algname) + 2 > prlen) { fprintf(stderr, "Parameter ``print-length'' should be larger " - "than the length of AlgorithmName (%d)\n", strlen(algname)); + "than the length of AlgorithmName (%lu)\n", strlen(algname)); exit(1); } |