aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-03-06 10:00:57 +0000
committerLev Walkin <vlm@lionet.info>2005-03-06 10:00:57 +0000
commit38e421158e74ddd4b83e8475eb4de96f1d2283f8 (patch)
tree277b08113678d07abdc4d0c2e1775227befdfc16
parent3b72bc78b7787de4a4600c04445c118cad17c314 (diff)
hide output to stderr
-rw-r--r--skeletons/tests/check-OIDs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/skeletons/tests/check-OIDs.c b/skeletons/tests/check-OIDs.c
index 79167307..a9066a9b 100644
--- a/skeletons/tests/check-OIDs.c
+++ b/skeletons/tests/check-OIDs.c
@@ -121,7 +121,7 @@ check_REGEN(int *arcs, int acount) {
int ret;
int i;
- printf("Encoding (R) {");
+ fprintf(stderr, "Encoding (R) {");
for(i = 0; i < acount; i++) {
printf(" %u", arcs[i]);
}
@@ -158,7 +158,7 @@ check_REGEN_OID(int *arcs, int acount) {
int ret;
int i;
- printf("Encoding (O) {");
+ fprintf(stderr, "Encoding (O) {");
for(i = 0; i < acount; i++) {
printf(" %u", arcs[i]);
}