Commit e3c16fd8 authored by ramiro's avatar ramiro

Add a newline in error message in CHECKED_ALLOC(Z).

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19758 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 660fa5a6
......@@ -253,7 +253,7 @@ if ((y) < (x)) {\
{\
p = av_malloc(size);\
if (p == NULL && (size) != 0) {\
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.\n");\
goto fail;\
}\
}
......@@ -262,7 +262,7 @@ if ((y) < (x)) {\
{\
p = av_mallocz(size);\
if (p == NULL && (size) != 0) {\
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.\n");\
goto fail;\
}\
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment