Changeset 0939097 in mainline
- Timestamp:
- 2020-01-09T01:04:57Z (5 years ago)
- Children:
- 88ad75f
- Parents:
- 3004ab7
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2020-01-05 19:04:25)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2020-01-09 01:04:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/main.c
r3004ab7 r0939097 292 292 * 293 293 */ 294 static intldr_load(ipc_call_t *req)294 static void ldr_load(ipc_call_t *req) 295 295 { 296 296 DPRINTF("LOADER_LOAD()\n"); … … 300 300 DPRINTF("Failed to load executable for '%s'.\n", progname); 301 301 async_answer_0(req, EINVAL); 302 return 1;302 return; 303 303 } 304 304 … … 318 318 DPRINTF("Failed to make TLS for '%s'.\n", progname); 319 319 async_answer_0(req, ENOMEM); 320 return 1;320 return; 321 321 } 322 322 … … 337 337 DPRINTF("Answering.\n"); 338 338 async_answer_0(req, EOK); 339 return 0;340 339 } 341 340
Note:
See TracChangeset
for help on using the changeset viewer.