diff options
author | Tomas Carnecky <[email protected]> | 2009-02-26 07:31:35 +0100 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2009-02-26 09:20:09 -0800 |
commit | 5add2c88bdcf0f892b65d6074986672fe4c1bdfe (patch) | |
tree | 08d9d68df1e8c85e2ede86b2ada9cc55d488f3fc /src/mesa | |
parent | 68915fd6fac44dd000080298e3afb0669e8754aa (diff) |
Fix "cast to pointer from integer of different size"
The script generates code like:
pixels = (const GLvoid *) (ptr_is_null != 0) ? NULL : (pc + 80);
which causes the above mentioned warning. Add parenthesis around the
whole expression to fix it.
Signed-off-by: Tomas Carnecky <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/glapi/glX_proto_recv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/glX_proto_recv.py b/src/mesa/glapi/glX_proto_recv.py index 923c1958f0f..f423c6db084 100644 --- a/src/mesa/glapi/glX_proto_recv.py +++ b/src/mesa/glapi/glX_proto_recv.py @@ -277,7 +277,7 @@ class PrintGlxDispatchFunctions(glX_proto_common.glx_print_proto): if param.is_image(): offset = f.offset_of( param.name ) - print '%s %s const %s = (%s) %s(pc + %s);' % (indent, type_string, param.name, type_string, cond, offset) + print '%s %s const %s = (%s) (%s(pc + %s));' % (indent, type_string, param.name, type_string, cond, offset) if param.depth: print '%s __GLXpixel3DHeader * const hdr = (__GLXpixel3DHeader *)(pc);' % (indent) |