diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-07 00:23:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-07 00:23:55 +0000 |
commit | 875fff71c0fbe202af912c1cdaed4ef39cd3da91 (patch) | |
tree | 86459fcb5035829c67d69a51681fd559c46169b8 /lib | |
parent | d9da9c211020ddfc2d2b0ae0f0e19a4abdee705c (diff) |
another size_t printf format missmatch
Diffstat (limited to 'lib')
-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); } |