remove const from run_loop objects - until I learn how to use it properly

This commit is contained in:
matthias.ringwald 2011-07-22 10:30:32 +00:00
parent 9cfae47295
commit 4f98e15dd8
3 changed files with 3 additions and 3 deletions

View File

@ -145,7 +145,7 @@ void cocoa_dump_timer(void){
return;
}
const run_loop_t run_loop_cocoa = {
run_loop_t run_loop_cocoa = {
&cocoa_init,
&cocoa_add_data_source,
&cocoa_remove_data_source,

View File

@ -165,7 +165,7 @@ void embedded_init(){
#endif
}
const run_loop_t run_loop_embedded = {
run_loop_t run_loop_embedded = {
&embedded_init,
&embedded_add_data_source,
&embedded_remove_data_source,

View File

@ -234,7 +234,7 @@ void posix_init(void){
timers = NULL;
}
const run_loop_t run_loop_posix = {
run_loop_t run_loop_posix = {
&posix_init,
&posix_add_data_source,
&posix_remove_data_source,