<HTML>
<HEAD>
<TITLE>Re: [PATCH] Cast void* to pointer* to appease some compilers.</TITLE>
</HEAD>
<BODY>
<FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>Could someone please review/apply this xserver patch? &nbsp;I&#8217;d like to get it in before 1.9 final. &nbsp;It&#8217;s trivial.<BR>
<BR>
Thanks,<BR>
-James<BR>
<BR>
On 6/18/10 5:28 PM, &quot;James Jones&quot; &lt;<a href="jajones@nvidia.com">jajones@nvidia.com</a>&gt; wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>When this privates.h is included in C++ builds, the compiler<BR>
complains about implicitly casting void* to void**. &nbsp;This small<BR>
patch fixes that up.<BR>
<BR>
Signed-off-by: James Jones &lt;<a href="jajones@nvidia.com">jajones@nvidia.com</a>&gt;<BR>
---<BR>
&nbsp;include/privates.h | &nbsp;&nbsp;&nbsp;2 +-<BR>
&nbsp;1 files changed, 1 insertions(+), 1 deletions(-)<BR>
<BR>
diff --git a/include/privates.h b/include/privates.h<BR>
index 4fed7d0..5ba9358 100644<BR>
--- a/include/privates.h<BR>
+++ b/include/privates.h<BR>
@@ -177,7 +177,7 @@ static inline pointer *<BR>
&nbsp;dixLookupPrivateAddr(PrivatePtr *privates, const DevPrivateKey key)<BR>
&nbsp;{<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;assert (key-&gt;size == 0);<BR>
- &nbsp;&nbsp;&nbsp;return dixGetPrivateAddr(privates, key);<BR>
+ &nbsp;&nbsp;&nbsp;return (pointer *)dixGetPrivateAddr(privates, key);<BR>
&nbsp;}<BR>
<BR>
&nbsp;/*<BR>
--<BR>
1.6.4<BR>
<BR>
<BR>
</SPAN></FONT></BLOCKQUOTE>

<DIV>
<HR>
</DIV>
<DIV>This email message is for the sole use of the intended recipient(s) and may 
contain confidential information.&nbsp; Any unauthorized review, use, disclosure 
or distribution is prohibited.&nbsp; If you are not the intended recipient, 
please contact the sender by reply email and destroy all copies of the original 
message. </DIV>
<DIV>
<HR>
</DIV>
<P></P>
</BODY>
</HTML>