[pkg-opensc-commit] [pkcs11-helper] 33/253: signed to unsigned cleanups
Eric Dorland
eric at moszumanska.debian.org
Fri Jan 6 23:39:01 UTC 2017
This is an automated email from the git hooks/post-receive script.
eric pushed a commit to branch master
in repository pkcs11-helper.
commit a8fa5aaa2d81a0c168075bdbdb46722191615345
Author: Alon Bar-Lev <alon.barlev at gmail.com>
Date: Sat Dec 9 12:57:27 2006 +0000
signed to unsigned cleanups
---
tests/basic/basic.c | 2 +-
tests/certificate/certificate.c | 2 +-
tests/slotevent/slotevent.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/basic/basic.c b/tests/basic/basic.c
index f589c88..4af909b 100644
--- a/tests/basic/basic.c
+++ b/tests/basic/basic.c
@@ -6,7 +6,7 @@
static
void
fatal (const char * const m, CK_RV rv) {
- fprintf (stderr, "%s - %08lx - %s\n", m, rv, pkcs11h_getMessage (rv));
+ fprintf (stderr, "%s - %08lu - %s\n", m, rv, pkcs11h_getMessage (rv));
exit (1);
}
diff --git a/tests/certificate/certificate.c b/tests/certificate/certificate.c
index a9e3732..bf42c05 100644
--- a/tests/certificate/certificate.c
+++ b/tests/certificate/certificate.c
@@ -17,7 +17,7 @@ int main () {
static
void
fatal (const char * const m, CK_RV rv) {
- fprintf (stderr, "%s - %08lx - %s\n", m, rv, pkcs11h_getMessage (rv));
+ fprintf (stderr, "%s - %lu - %s\n", m, rv, pkcs11h_getMessage (rv));
exit (1);
}
diff --git a/tests/slotevent/slotevent.c b/tests/slotevent/slotevent.c
index a36f95e..7dfccc2 100644
--- a/tests/slotevent/slotevent.c
+++ b/tests/slotevent/slotevent.c
@@ -22,7 +22,7 @@ int main () {
static
void
fatal (const char * const m, CK_RV rv) {
- fprintf (stderr, "%s - %08lx - %s\n", m, rv, pkcs11h_getMessage (rv));
+ fprintf (stderr, "%s - %08lu - %s\n", m, rv, pkcs11h_getMessage (rv));
exit (1);
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opensc/pkcs11-helper.git
More information about the pkg-opensc-commit
mailing list