We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c2085e2 + 2d5a66c commit 273c9a0Copy full SHA for 273c9a0
1 file changed
0_hello_world.c
@@ -159,14 +159,14 @@ int main(int argc, const char *argv[])
159
AVFrame *pFrame = av_frame_alloc();
160
if (!pFrame)
161
{
162
- logging("failed to allocated memory for AVFrame");
+ logging("failed to allocate memory for AVFrame");
163
return -1;
164
}
165
// https://ffmpeg.org/doxygen/trunk/structAVPacket.html
166
AVPacket *pPacket = av_packet_alloc();
167
if (!pPacket)
168
169
- logging("failed to allocated memory for AVPacket");
+ logging("failed to allocate memory for AVPacket");
170
171
172
0 commit comments