Browse Source

str.c: logging: convert LOG to LM_*

Ovidiu Sas 11 years ago
parent
commit
4b3179f1bd
1 changed files with 1 additions and 1 deletions
  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)