<p>Alexander Traud has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.asterisk.org/8066">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">headers: Consistent use of typeof and/or __typeof__.<br><br>Because of a copy-and-paste error, the Asterisk project was using __typeof<br>instead of typeof. It works because typeof, __typeof, and __typeof__ are<br>supported by GCC, but here the escaped variant was not intended. Therefore,<br>for consistence, we change this to typeof.<br><br>Change-Id: I2a962c3e596e882f691a19345445b14571a5f07c<br>---<br>M include/asterisk/linkedlists.h<br>1 file changed, 1 insertion(+), 1 deletion(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/66/8066/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">diff --git a/include/asterisk/linkedlists.h b/include/asterisk/linkedlists.h<br>index 8715cf1..5f50c75 100644<br>--- a/include/asterisk/linkedlists.h<br>+++ b/include/asterisk/linkedlists.h<br>@@ -854,7 +854,7 @@<br>  */<br> #define AST_LIST_REMOVE(head, elm, field)                                          \<br>     ({                                                                                                                      \<br>-            __typeof(elm) __elm = (elm);                                                    \<br>+            typeof(elm) __elm = (elm);                                                              \<br>             if (__elm) {                                                                                    \<br>                     if ((head)->first == __elm) {                                                \<br>                             (head)->first = __elm->field.next;                                \<br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/8066">change 8066</a>. To unsubscribe, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/8066"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: 15 </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>
<div style="display:none"> Gerrit-Change-Id: I2a962c3e596e882f691a19345445b14571a5f07c </div>
<div style="display:none"> Gerrit-Change-Number: 8066 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Alexander Traud <pabstraud@compuserve.com> </div>