Hi list,<br><br>I&#39;ve recently built miXed/toxy for pd-l2ork successfully but now I&#39;ve run into errors with pd-extended. The errors concern tot.<br>I&#39;ve noticed that they are not the same version (see the diff below), however copying the l2ork one over the extended one doesn&#39;t solve the problem but triggers different errors.<br>

Could there be an easy way out?<br><br>160c160<br>&lt;         sprintf(buf, &quot;.x%lx.c&quot;, (int)cv);<br>---<br>&gt;         sprintf(buf, &quot;.x%x.c&quot;, (int)cv);<br>402c402<br>&lt;     sprintf(buf, &quot;.x%lx&quot;, (int)cv);<br>

---<br>&gt;     sprintf(buf, &quot;.x%x&quot;, (int)cv);<br>429c429<br>&lt;         sprintf(buf, &quot;.x%lx&quot;, (int)cv);<br>---<br>&gt;         sprintf(buf, &quot;.x%x&quot;, (int)cv);<br>464c464<br>&lt;         sprintf(buf, &quot;.x%lx&quot;, (int)cv);<br>

---<br>&gt;         sprintf(buf, &quot;.x%x&quot;, (int)cv);<br>595c595<br>&lt;         sprintf(buf, &quot;.x%lx.c&quot;, (int)glist);<br>---<br>&gt;         sprintf(buf, &quot;.x%x.c&quot;, (int)glist);<br><br>Thanks for any tips!<br>

<br>PS I&#39;m on amd64<br><br>András