summaryrefslogtreecommitdiff
path: root/libavutil/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 14ea95b182..1353399b92 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -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;\
}\
}