]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Don't return
authorJim Jagielski <jim@apache.org>
Thu, 5 Mar 2015 14:35:39 +0000 (14:35 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 5 Mar 2015 14:35:39 +0000 (14:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1664358 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/motorz/motorz.c

index abe0a87b05f45ac94fb8a4d7ef83b5db8ca117e3..2bf61e77ad9620936864acd2200aac8a4fc9ff3b 100644 (file)
@@ -116,12 +116,11 @@ static void *motorz_io_setup_conn(apr_thread_t * thread, void *baton)
         ap_log_error(APLOG_MARK, APLOG_DEBUG, status, ap_server_conf, APLOGNO()
                      "motorz_io_setup_conn: motorz_io_process failed (?)");
     }
-    
-    return NULL;
 }
 
 static apr_status_t motorz_io_user(motorz_core_t *mz, motorz_sb_t *sb)
 {
+    /* TODO */
     return APR_SUCCESS;
 }
 
@@ -169,8 +168,6 @@ static void *motorz_timer_invoke(apr_thread_t *thread, void *baton)
     motorz_timer_t *ep = (motorz_timer_t *)baton;
     
     motorz_timer_run(ep);
-    
-    return NULL;
 }
 
 static void *motorz_io_invoke(apr_thread_t * thread, void *baton)
@@ -187,8 +184,6 @@ static void *motorz_io_invoke(apr_thread_t * thread, void *baton)
         ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, ap_server_conf, APLOGNO()
                      "motorz_io_invoke: motorz_io_process failed (?)");
     }
-    
-    return NULL;
 }
 
 static apr_status_t motorz_io_event_process(motorz_core_t *mz, motorz_sb_t *sb)