19 lines
285 B
C
19 lines
285 B
C
|
#include "libnazgul.h"
|
||
|
#include "ids.h"
|
||
|
|
||
|
int msgSpaceListElemClose(msgSpaceListElem * listElem)
|
||
|
{
|
||
|
|
||
|
msgSpaceListElemId eId;
|
||
|
strcpy(eId,listElem->id);
|
||
|
|
||
|
if (munmap(listElem,sizeof(msgSpaceListElem)) < 0){
|
||
|
NZG_ERROR("unmap",eId);
|
||
|
goto ERROR;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
ERROR:
|
||
|
return-1;
|
||
|
};
|