<div dir="auto"><br><div class="gmail_extra" dir="auto"><br><div class="gmail_quote">Den 11 apr. 2017 20:00 skrev "Samuel Pitoiset" <<a href="mailto:samuel.pitoiset@gmail.com">samuel.pitoiset@gmail.com</a>>:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Fixes the following Clang warning.<br>
<br>
In file included from radeon_debug.c:32:<br>
./radeon_common_context.h:500:<wbr>19: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier]<br>
extern const char const *radeonVendorString;<br>
<br>
Signed-off-by: Samuel Pitoiset <<a href="mailto:samuel.pitoiset@gmail.com">samuel.pitoiset@gmail.com</a>><br>
---<br>
 src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.c | 2 +-<br>
 src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.h | 2 +-<br>
 2 files changed, 2 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.c b/src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.c<br>
index d981ca24e5..2c12b62d82 100644<br>
--- a/src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.c<br>
+++ b/src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.c<br>
@@ -70,7 +70,7 @@ static const char* get_chip_family_name(int chip_family)<br>
        }<br>
 }<br>
<br>
-const char const *radeonVendorString = "Mesa Project";<br>
+const char *radeonVendorString = "Mesa Project";<br>
<br>
 /* Return complete renderer string.<br>
  */<br>
diff --git a/src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.h b/src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.h<br>
index d142a871b4..a85bedf31f 100644<br>
--- a/src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.h<br>
+++ b/src/mesa/drivers/dri/radeon/<wbr>radeon_common_context.h<br>
@@ -497,7 +497,7 @@ static inline __DRIdrawable* radeon_get_readable(<wbr>radeonContextPtr radeon)<br>
        return radeon->driContext-><wbr>driReadablePriv;<br>
 }<br>
<br>
-extern const char const *radeonVendorString;<br>
+extern const char *radeonVendorString;<br>
<br>
 const char *radeonGetRendererString(<wbr>radeonScreenPtr radeonScreen);<br>
<font color="#888888"><br>
--<br>
2.12.2<br>
<br>
______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
</font></blockquote></div><br></div><div class="gmail_extra" dir="auto">Hi Samuel, </div><div class="gmail_extra" dir="auto"><br></div><div class="gmail_extra" dir="auto">Maybe the intention here was to have "const char * const" as in constant pointer to constant data?</div><div class="gmail_extra" dir="auto"><br></div><div class="gmail_extra" dir="auto">BR</div><div class="gmail_extra" dir="auto">Nils</div></div>