changeset 2005:fb04036147f8 libavformat

Make some functions which aren't used outside their declaring source file and have no prototype in a header file static. patch by Stefan Huehner, stefan huehner org
author diego
date Sun, 08 Apr 2007 20:21:11 +0000
parents cabaa5557164
children 2f0154760e5f
files nutdec.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/nutdec.c	Sun Apr 08 12:05:02 2007 +0000
+++ b/nutdec.c	Sun Apr 08 20:21:11 2007 +0000
@@ -424,11 +424,11 @@
     return 0;
 }
 
-int sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){
+static int sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){
     return (a->pos - b->pos>>32) - (b->pos - a->pos>>32);
 }
 
-int sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){
+static int sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){
     return (a->ts - b->ts>>32) - (b->ts - a->ts>>32);
 }