Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/crypto/external/bsd/netpgp/dist/src/lib fix a piece of lint
details: https://anonhg.NetBSD.org/src/rev/02ade002f2b6
branches: trunk
changeset: 754916:02ade002f2b6
user: agc <agc%NetBSD.org@localhost>
date: Sun May 16 02:46:25 2010 +0000
description:
fix a piece of lint
diffstat:
crypto/external/bsd/netpgp/dist/src/lib/crypto.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r ad57a484c942 -r 02ade002f2b6 crypto/external/bsd/netpgp/dist/src/lib/crypto.c
--- a/crypto/external/bsd/netpgp/dist/src/lib/crypto.c Sat May 15 21:22:39 2010 +0000
+++ b/crypto/external/bsd/netpgp/dist/src/lib/crypto.c Sun May 16 02:46:25 2010 +0000
@@ -54,7 +54,7 @@
#if defined(__NetBSD__)
__COPYRIGHT("@(#) Copyright (c) 2009 The NetBSD Foundation, Inc. All rights reserved.");
-__RCSID("$NetBSD: crypto.c,v 1.22 2010/05/08 02:17:15 agc Exp $");
+__RCSID("$NetBSD: crypto.c,v 1.23 2010/05/16 02:46:25 agc Exp $");
#endif
#include <sys/types.h>
@@ -159,7 +159,7 @@
if (__ops_get_debug_level(__FILE__)) {
fprintf(stderr, "decoded m buf:\n");
- hexdump(stderr, buf, n - i, " ");
+ hexdump(stderr, buf, (size_t)(n - i), " ");
fprintf(stderr, "\n");
}
return n - i;
Home |
Main Index |
Thread Index |
Old Index