summaryrefslogtreecommitdiffstats
path: root/docs/dispatch.html
diff options
context:
space:
mode:
authorErik Faye-Lund <[email protected]>2019-04-18 15:42:14 +0200
committerErik Faye-Lund <[email protected]>2019-05-02 11:09:15 +0000
commit5b2a7062ff69b64af0128fb3b878343695beaa5a (patch)
tree10a8a1f2df81445d216ef86b404027550da153e1 /docs/dispatch.html
parent13b990000fb5ecc7ca490ef50d3a29ee6777b5b9 (diff)
docs: properly escape ampersand
Even in preformatted blocks, ampersands should be escaped. Let's correct this, in case of strict parsers. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/dispatch.html')
-rw-r--r--docs/dispatch.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dispatch.html b/docs/dispatch.html
index c96ec2de302..c98ec6592d6 100644
--- a/docs/dispatch.html
+++ b/docs/dispatch.html
@@ -134,7 +134,7 @@ the common case.</p>
<tr><td><pre>
#define GET_DISPATCH() \
(_glapi_Dispatch != NULL) \
- ? _glapi_Dispatch : pthread_getspecific(&_glapi_Dispatch_key)
+ ? _glapi_Dispatch : pthread_getspecific(&amp;_glapi_Dispatch_key)
</pre></td></tr>
<tr><td>Improved <tt>GET_DISPATCH</tt> Implementation</td></tr></table>
</blockquote>