summaryrefslogtreecommitdiff
path: root/libavutil/des.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-03-31 09:32:59 +0000
committerDiego Biurrun <diego@biurrun.de>2009-03-31 09:32:59 +0000
commit504ffed19f990f91237479be93480d9b597561e2 (patch)
tree0112de10541e64bca39496011f62f0284ee87470 /libavutil/des.c
parentcafe71c62d87955172dd6d8fcb277988f00e92e2 (diff)
Mark non-exported functions in test and example programs as static.
Originally committed as revision 18259 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/des.c')
-rw-r--r--libavutil/des.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/des.c b/libavutil/des.c
index 43f6c4ae2e..6ba7702252 100644
--- a/libavutil/des.c
+++ b/libavutil/des.c
@@ -349,7 +349,7 @@ static const uint8_t cbc_key[] = {
0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0x01, 0x23
};
-int run_test(int cbc, int decrypt) {
+static int run_test(int cbc, int decrypt) {
AVDES d;
int delay = cbc && !decrypt ? 2 : 1;
uint64_t res;