diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2013-10-29 11:38:35 +0000 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2013-10-29 11:38:35 +0000 |
commit | 069ceea7da6670905e5894d33b344e983ab70d0c (patch) | |
tree | 3b0848fcc529adb5c00cdb6bd95affeb5916e8f9 /libavdevice/timefilter.c | |
parent | 325f6e0a97c943807c665eb1d5c278f8d789156b (diff) | |
download | ffmpeg-069ceea7da6670905e5894d33b344e983ab70d0c.tar.gz |
timefilter: Fix typo in allocation failure message
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavdevice/timefilter.c')
-rw-r--r-- | libavdevice/timefilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/timefilter.c b/libavdevice/timefilter.c index b4133e085c..9d38f93b96 100644 --- a/libavdevice/timefilter.c +++ b/libavdevice/timefilter.c @@ -126,7 +126,7 @@ int main(void) double error = 0; TimeFilter *tf = ff_timefilter_new(1, par0, par1); if (!tf) { - printf("Could not alocate memory for timefilter.\n"); + printf("Could not allocate memory for timefilter.\n"); exit(1); } for (i = 0; i < SAMPLES; i++) { |