projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1e7843
)
rtasm: use pointer_to_func() to silence warning
author
Brian Paul
<brianp@vmware.com>
Mon, 25 Oct 2010 15:18:07 +0000
(09:18 -0600)
committer
Brian Paul
<brianp@vmware.com>
Mon, 25 Oct 2010 15:18:07 +0000
(09:18 -0600)
src/gallium/auxiliary/rtasm/rtasm_ppc.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/rtasm/rtasm_ppc.c
b/src/gallium/auxiliary/rtasm/rtasm_ppc.c
index ef4b306cb677dfd165480d0b1847f85aaf0e2119..330838d23cf1ec4f337458cb7c924708d5aafa64 100644
(file)
--- a/
src/gallium/auxiliary/rtasm/rtasm_ppc.c
+++ b/
src/gallium/auxiliary/rtasm/rtasm_ppc.c
@@
-97,7
+97,7
@@
void (*ppc_get_func(struct ppc_function *p))(void)
return (void (*)(void)) NULL;
else
#endif
- return (void (*)(void)) p
->store
;
+ return (void (*)(void)) p
ointer_to_func(p->store)
;
}