Changes in uspace/srv/locsrv/locsrv.c [8a637a4:f9b2cb4c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/locsrv/locsrv.c
r8a637a4 rf9b2cb4c 412 412 { 413 413 if (server == NULL) 414 return EEXIST ;414 return EEXISTS; 415 415 416 416 fibril_mutex_lock(&servers_list_mutex); … … 511 511 free(service->name); 512 512 free(service); 513 async_answer_0(iid, EEXIST );513 async_answer_0(iid, EEXISTS); 514 514 return; 515 515 } … … 951 951 loc_namespace_find_id(IPC_GET_ARG1(*icall)); 952 952 if (namespace == NULL) 953 async_answer_0(iid, EEXIST );953 async_answer_0(iid, EEXISTS); 954 954 else 955 955 async_answer_1(iid, EOK, namespace->refcnt);
Note:
See TracChangeset
for help on using the changeset viewer.