Rev 3912 | Rev 4350 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3912 | Rev 4307 | ||
---|---|---|---|
Line 99... | Line 99... | ||
99 | * Parameters are ignored. |
99 | * Parameters are ignored. |
100 | */ |
100 | */ |
101 | int main( int argc, char * argv[] ){ |
101 | int main( int argc, char * argv[] ){ |
102 | ERROR_DECLARE; |
102 | ERROR_DECLARE; |
103 | 103 | ||
104 | printf("\nTask %d - ", task_get_id()); |
104 | printf("Task %d - ", task_get_id()); |
105 | module_print_name(); |
105 | module_print_name(); |
- | 106 | printf( "\n" ); |
|
106 | if( ERROR_OCCURRED( module_start( client_connection ))){ |
107 | if( ERROR_OCCURRED( module_start( client_connection ))){ |
107 | printf( " - ERROR %i", ERROR_CODE ); |
108 | printf( " - ERROR %i\n", ERROR_CODE ); |
108 | return ERROR_CODE; |
109 | return ERROR_CODE; |
109 | } |
110 | } |
110 | return EOK; |
111 | return EOK; |
111 | } |
112 | } |
112 | 113 |