From 149185f49ea721e239ed9e250de0080c015878be Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 19 Mar 2011 17:13:24 -0700 Subject: [PATCH] Using new log functions --- protocols/vnc/src/vnc_client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocols/vnc/src/vnc_client.c b/protocols/vnc/src/vnc_client.c index fd78cf06..49de218d 100644 --- a/protocols/vnc/src/vnc_client.c +++ b/protocols/vnc/src/vnc_client.c @@ -255,14 +255,14 @@ int vnc_guac_client_handle_messages(guac_client* client) { wait_result = WaitForMessage(rfb_client, 1000000); if (wait_result < 0) { - GUAC_LOG_ERROR("Error waiting for VNC server message\n"); + guac_log_error("Error waiting for VNC server message\n"); return 1; } if (wait_result > 0) { if (!HandleRFBServerMessage(rfb_client)) { - GUAC_LOG_ERROR("Error handling VNC server message\n"); + guac_log_error("Error handling VNC server message\n"); return 1; }