diff options
author | dscho <dscho> | 2003-07-28 12:01:07 +0000 |
---|---|---|
committer | dscho <dscho> | 2003-07-28 12:01:07 +0000 |
commit | 13b358fed1b89a7a7f8c47bc175dcb3ccae1e39b (patch) | |
tree | 8ca17b27e8b953403b93625381aa162d734c4287 /examples/vncev.c | |
parent | eef408c1d84c7aaceb9732dd9a7e216886d2c2f8 (diff) | |
download | libtdevnc-13b358fed1b89a7a7f8c47bc175dcb3ccae1e39b.tar.gz libtdevnc-13b358fed1b89a7a7f8c47bc175dcb3ccae1e39b.zip |
fixed maxRectsPerUpdate with Tight encoding bug; some autoconfing; stderr should not be used in a library (use rfbLog instead)
Diffstat (limited to 'examples/vncev.c')
-rw-r--r-- | examples/vncev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vncev.c b/examples/vncev.c index 5dbfd0d..b465d47 100644 --- a/examples/vncev.c +++ b/examples/vncev.c @@ -63,7 +63,7 @@ void output(rfbScreenInfoPtr s,char* line) { rfbDoCopyRect(s,0,0,640,480-lineHeight,0,-lineHeight); rfbDrawString(s,&default8x16Font,10,lineY,line,0x01); - fprintf(stderr,"%s\n",line); + rfbLog("%s\n",line); } void dokey(Bool down,KeySym k,rfbClientPtr cl) |