diff options
author | Ran Benita <ran234@gmail.com> | 2014-10-12 21:58:16 +0300 |
---|---|---|
committer | Christian Linhart <chris@demorecorder.com> | 2015-03-15 12:03:27 +0100 |
commit | 8bf8b62316a3066b61243d797d22c2100fd173f5 (patch) | |
tree | 217e5ee01881b57a28e32017fad35b4c82fd27cb | |
parent | ec435aebd6ed0523de2d341e6aff5ae66f230b10 (diff) |
c_client.py: remove commented debug statements
Signed-off-by: Ran Benita <ran234@gmail.com>
Reviewed-by: Christian Linhart <chris@demorecorder.com>
-rw-r--r-- | src/c_client.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/c_client.py b/src/c_client.py index 3dc4104..897cf8b 100644 --- a/src/c_client.py +++ b/src/c_client.py @@ -826,7 +826,6 @@ def _c_serialize_helper_insert_padding(context, code_lines, space, postpone, is_ else: code_lines.append( '%s xcb_pad = -xcb_block_len & (xcb_align_to - 1);' % space) -# code_lines.append('%s printf("automatically inserting padding: %%%%d\\n", xcb_pad);' % space) code_lines.append('%s xcb_buffer_len += xcb_block_len + xcb_pad;' % space) if not postpone: @@ -2303,8 +2302,6 @@ def _c_request_helper(self, name, cookie_type, void, regular, aux=False, reply_f _c(' unsigned int xcb_tmp_len;') _c(' char *xcb_tmp;') _c('') - # simple request call tracing -# _c(' printf("in function %s\\n");' % func_name) # fixed size fields for field in wire_fields: |