targets/plc_debug.c
changeset 504 688e84df3408
parent 502 5343ae43f6d0
child 507 bf6f623d7450
--- a/targets/plc_debug.c	Thu Dec 10 17:36:37 2009 +0100
+++ b/targets/plc_debug.c	Fri Dec 11 08:49:32 2009 +0100
@@ -278,11 +278,11 @@
 int WaitDebugData(unsigned long *tick);
 /* Wait until debug data ready and return pointer to it */
 int GetDebugData(unsigned long *tick, unsigned long *size, void **buffer){
-    int res = WaitDebugData(tick);
-    if(res){
+    int wait_error = WaitDebugData(tick);
+    if(!wait_error){
         *size = buffer_cursor - debug_buffer;
         *buffer = debug_buffer;
     }
-    return res;
-}
-
+    return wait_error;
+}
+