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 /vncterm/VNCommand.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 'vncterm/VNCommand.c')
-rw-r--r-- | vncterm/VNCommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vncterm/VNCommand.c b/vncterm/VNCommand.c index 694f401..26d003c 100644 --- a/vncterm/VNCommand.c +++ b/vncterm/VNCommand.c @@ -35,7 +35,7 @@ int main(int argc, char **argv) if(programArg0<argc) { int in[2],out[2],err[2],pid; if(pipe(in)<0 || pipe(out)<0 || pipe(err)<0) { - fprintf(stderr,"Couldn't make pipes!"); + rfbLog("Couldn't make pipes!"); return(1); } @@ -118,6 +118,6 @@ int main(int argc, char **argv) } } } - fprintf(stderr,"exit\n"); + rfbLog("exit\n"); return(0); } |