summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordscho <dscho>2004-09-03 11:18:50 +0000
committerdscho <dscho>2004-09-03 11:18:50 +0000
commit3060d5fa153b370d54e87ef44017f7fa72a53875 (patch)
tree18d4248f6366557ccb43fdc00c32c0687e70d10b
parentbe50833051b5f316a5bc140267ba4d3d79be892f (diff)
downloadlibtdevnc-3060d5fa.tar.gz
libtdevnc-3060d5fa.zip
output only via rfbErr
-rwxr-xr-xlibvncserver/rfbregion.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libvncserver/rfbregion.c b/libvncserver/rfbregion.c
index a102bc2..e8d11f0 100755
--- a/libvncserver/rfbregion.c
+++ b/libvncserver/rfbregion.c
@@ -176,7 +176,7 @@ sraSpanListEqual(const sraSpanList *s1, const sraSpanList *s2) {
if (!s2) {
return 1;
} else {
- printf("sraSpanListEqual:incompatible spans (only one NULL!)\n");
+ rfbErr("sraSpanListEqual:incompatible spans (only one NULL!)\n");
return FALSE;
}
}
@@ -271,7 +271,7 @@ sraSpanListOr(sraSpanList *dest, const sraSpanList *src) {
if (!src) {
return;
} else {
- printf("sraSpanListOr:incompatible spans (only one NULL!)\n");
+ rfbErr("sraSpanListOr:incompatible spans (only one NULL!)\n");
return;
}
}
@@ -360,7 +360,7 @@ sraSpanListAnd(sraSpanList *dest, const sraSpanList *src) {
if (!src) {
return 1;
} else {
- printf("sraSpanListAnd:incompatible spans (only one NULL!)\n");
+ rfbErr("sraSpanListAnd:incompatible spans (only one NULL!)\n");
return FALSE;
}
}
@@ -440,7 +440,7 @@ sraSpanListSubtract(sraSpanList *dest, const sraSpanList *src) {
if (!src) {
return 1;
} else {
- printf("sraSpanListSubtract:incompatible spans (only one NULL!)\n");
+ rfbErr("sraSpanListSubtract:incompatible spans (only one NULL!)\n");
return FALSE;
}
}