From: Michael Schroeder Date: Thu, 21 Apr 2011 14:54:10 +0000 (+0200) Subject: - made data_read_idarray, data_read_rel_idarray, data_skip_key static X-Git-Tag: BASE-SuSE-Code-12_1-Branch~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ad2a9e1f313602db0f64d87e5c40f46ca2de107;p=thirdparty%2Flibsolv.git - made data_read_idarray, data_read_rel_idarray, data_skip_key static --- diff --git a/src/repo_solv.c b/src/repo_solv.c index eba1d484..b264d71e 100644 --- a/src/repo_solv.c +++ b/src/repo_solv.c @@ -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; diff --git a/src/repodata.c b/src/repodata.c index 7231c037..9bf755c6 100644 --- a/src/repodata.c +++ b/src/repodata.c @@ -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;