소스 검색

str.c: logging: convert LOG to LM_*

Ovidiu Sas 11 년 전
부모
커밋
4b3179f1bd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      str.c

+ 1 - 1
str.c

@@ -33,7 +33,7 @@ int str_append(str *orig, str *suffix, str *dest)
 	dest->s = pkg_malloc(sizeof(char)*dest->len);
 	if(dest->s==NULL)
 	{
-		LOG(L_ERR, "memory allocation failure\n");
+		LM_ERR("memory allocation failure\n");
 		return -1;
 	}
 	if(orig->len>0)