Commit 3060d5fa authored by dscho's avatar dscho

output only via rfbErr

parent be508330
...@@ -176,7 +176,7 @@ sraSpanListEqual(const sraSpanList *s1, const sraSpanList *s2) { ...@@ -176,7 +176,7 @@ sraSpanListEqual(const sraSpanList *s1, const sraSpanList *s2) {
if (!s2) { if (!s2) {
return 1; return 1;
} else { } else {
printf("sraSpanListEqual:incompatible spans (only one NULL!)\n"); rfbErr("sraSpanListEqual:incompatible spans (only one NULL!)\n");
return FALSE; return FALSE;
} }
} }
...@@ -271,7 +271,7 @@ sraSpanListOr(sraSpanList *dest, const sraSpanList *src) { ...@@ -271,7 +271,7 @@ sraSpanListOr(sraSpanList *dest, const sraSpanList *src) {
if (!src) { if (!src) {
return; return;
} else { } else {
printf("sraSpanListOr:incompatible spans (only one NULL!)\n"); rfbErr("sraSpanListOr:incompatible spans (only one NULL!)\n");
return; return;
} }
} }
...@@ -360,7 +360,7 @@ sraSpanListAnd(sraSpanList *dest, const sraSpanList *src) { ...@@ -360,7 +360,7 @@ sraSpanListAnd(sraSpanList *dest, const sraSpanList *src) {
if (!src) { if (!src) {
return 1; return 1;
} else { } else {
printf("sraSpanListAnd:incompatible spans (only one NULL!)\n"); rfbErr("sraSpanListAnd:incompatible spans (only one NULL!)\n");
return FALSE; return FALSE;
} }
} }
...@@ -440,7 +440,7 @@ sraSpanListSubtract(sraSpanList *dest, const sraSpanList *src) { ...@@ -440,7 +440,7 @@ sraSpanListSubtract(sraSpanList *dest, const sraSpanList *src) {
if (!src) { if (!src) {
return 1; return 1;
} else { } else {
printf("sraSpanListSubtract:incompatible spans (only one NULL!)\n"); rfbErr("sraSpanListSubtract:incompatible spans (only one NULL!)\n");
return FALSE; return FALSE;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment