]> err.no Git - dpkg/commitdiff
Fix loadfilter prototype and make it static
authorTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 22:53:46 +0000 (23:53 +0100)
committerTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 22:53:46 +0000 (23:53 +0100)
src/filters.c
src/filters.h

index a8d34d2f1845e02b61be07caacf9c7186ce2f9b5..6f8e7e64cbbaba38393040f2506041372134a84a 100644 (file)
@@ -37,7 +37,7 @@
 
 struct filterlist *filters = NULL;
 
-void loadfilter(char *fn) {
+static void loadfilter(const char *fn) {
   FILE *file;
   char linebuf[1024];
   struct filterlist *filtertail;
index c1de3087493bcaee2ebe079f55931ba26e19c5be..f9ccaea06eb7d8644907060cd9ae86425c0469e2 100644 (file)
@@ -21,7 +21,6 @@
 
 #include "tarfn.h"
 
-void loadfilter(char *fn);
 void loadfilters(void);
 int filter_should_skip(struct TarInfo *ti);