Hi,<br><br>I just tried doing a make current (I was on 10231 and updated to 10416) and mod_python failed to compile. I can&#39;t remember exactly what the error msg was as it&#39;s beyond what my terminal&#39;s scroll buffer is configured to store but it was something along the lines of &quot;cc1 will treat all warnings as errors&quot; and then an error msg similar to:<br>
<br>switch_core.h:1686:function declaration isn't a prototype<br><br>This happened while building mod_python. I think it was mod_python.c which includes &quot;switch.h&quot;, and in switch.h line 103 it includes switch_core.h, and in switch_core.h line 1686 I see this line:<br>
<br>SWITCH_DECLARE(void) switch_cond_next();<br><br>Apparently if switch_cond_next() takes no parameters, &#39;void&#39; goes in there. After some googling, in C/C++ if you put nothing in the parentheses it means it takes an unlimited number of arguments while void means none. Why would it complain if that&#39;s the case?<br>
<br>I had a look at the switch_code_next() function definition in switch_time.c() and it looks like its not supposed to take any arguments so I put &#39;void&#39; inside the parentheses in line 1686 of switch_core.h and it builds fine now.<br>
<br>Is this the correct fix?<br>- Gonzalo (znoG #freeswitch)<br><br><br>