- made data_read_idarray, data_read_rel_idarray, data_skip_key static
authorMichael Schroeder <mls@suse.de>
Thu, 21 Apr 2011 14:54:10 +0000 (16:54 +0200)
committerMichael Schroeder <mls@suse.de>
Thu, 21 Apr 2011 14:54:10 +0000 (16:54 +0200)
src/repo_solv.c
src/repodata.c

index eba1d48..b264d71 100644 (file)
@@ -214,7 +214,7 @@ data_read_id_max(unsigned char *dp, Id *ret, Id *map, int max, int *error)
   return dp;
 }
 
-unsigned char *
+static unsigned char *
 data_read_idarray(unsigned char *dp, Id **storep, Id *map, int max, int *error)
 {
   Id *store = *storep;
@@ -246,7 +246,7 @@ data_read_idarray(unsigned char *dp, Id **storep, Id *map, int max, int *error)
   return dp;
 }
 
-unsigned char *
+static unsigned char *
 data_read_rel_idarray(unsigned char *dp, Id **storep, Id *map, int max, int *error, Id marker)
 {
   Id *store = *storep;
index 7231c03..9bf755c 100644 (file)
@@ -348,7 +348,7 @@ data_skip_schema(Repodata *data, unsigned char *dp, Id schema)
   return dp;
 }
 
-unsigned char *
+static unsigned char *
 data_skip_key(Repodata *data, unsigned char *dp, Repokey *key)
 {
   int nentries, schema;