Skip to content
Snippets Groups Projects
Commit 325602ff authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

make format_au compile on FreeBSD (bug #4456)

change out-of-memory messages to LOG_ERROR


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5845 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 090f7d27
No related branches found
No related tags found
No related merge requests found
......@@ -10,8 +10,6 @@
* the GNU General Public License
*/
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <sys/time.h>
#include <stdio.h>
......@@ -190,7 +188,7 @@ static struct ast_filestream *au_open(int fd)
struct ast_filestream *tmp;
if (!(tmp = malloc(sizeof(struct ast_filestream)))) {
ast_log(LOG_WARNING, "Out of memory\n");
ast_log(LOG_ERROR, "Out of memory\n");
return NULL;
}
......@@ -222,7 +220,7 @@ static struct ast_filestream *au_rewrite(int fd, const char *comment)
struct ast_filestream *tmp;
if ((tmp = malloc(sizeof(struct ast_filestream))) == NULL) {
ast_log(LOG_WARNING, "Out of memory\n");
ast_log(LOG_ERROR, "Out of memory\n");
return NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment