projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5331d2b
)
fft-test: Remove possibility of returning restricted exit code
author
Derek Buitenhuis
<derek.buitenhuis@gmail.com>
Tue, 22 Oct 2013 18:19:02 +0000
(19:19 +0100)
committer
Derek Buitenhuis
<derek.buitenhuis@gmail.com>
Fri, 25 Oct 2013 10:06:43 +0000
(11:06 +0100)
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
libavcodec/fft-test.c
patch
|
blob
|
history
diff --git
a/libavcodec/fft-test.c
b/libavcodec/fft-test.c
index
1e46750
..
ff5a126
100644
(file)
--- a/
libavcodec/fft-test.c
+++ b/
libavcodec/fft-test.c
@@
-489,5
+489,8
@@
int main(int argc, char **argv)
av_free(tab_ref);
av_free(exptab);
- return err;
+ if (err)
+ printf("Error: %d.\n", err);
+
+ return !!err;
}