Browse Source

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

Originally committed as revision 19758 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Ramiro Polla 16 years ago
parent
commit
5ce6934e0a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavutil/internal.h

+ 2
- 2
libavutil/internal.h View File

@@ -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;\
}\
}


Loading…
Cancel
Save