Browse Source

timefilter: Fix typo in allocation failure message

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
tags/n2.2-rc1
Derek Buitenhuis 11 years ago
parent
commit
069ceea7da
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavdevice/timefilter.c

+ 1
- 1
libavdevice/timefilter.c View File

@@ -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++) {


Loading…
Cancel
Save