summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwchang0222%aol.com <devnull@localhost>2003-10-25 14:01:43 +0000
committerwchang0222%aol.com <devnull@localhost>2003-10-25 14:01:43 +0000
commit47387045392b9f47c94d2c0f99613624b7e1e38e (patch)
tree7c87c9af029bd729687e51c8da7a34fa9d210b07
parent29c211961fc7388255adc3feb65686ff69c8b71e (diff)
downloadnss-hg-47387045392b9f47c94d2c0f99613624b7e1e38e.tar.gz
Bugzilla bug 223624: node->error is a 'long', so it should match a %ld
format. r=nelsonb.
-rw-r--r--security/nss/cmd/lib/secutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/cmd/lib/secutil.c b/security/nss/cmd/lib/secutil.c
index 96909f3a7..a87289ae8 100644
--- a/security/nss/cmd/lib/secutil.c
+++ b/security/nss/cmd/lib/secutil.c
@@ -2726,7 +2726,7 @@ SECU_printCertProblems(FILE *outfile, CERTCertDBHandle *handle,
}
}
}
- fprintf(outfile," ERROR %d: %s\n", node->error,
+ fprintf(outfile," ERROR %ld: %s\n", node->error,
SECU_Strerror(node->error));
errstr = NULL;
switch (node->error) {