Remove unused field buildpriority in providedList

This commit is contained in:
Silvan Calarco 2013-10-13 02:16:12 +02:00
parent 57a0e45218
commit e23954abf5
2 changed files with 0 additions and 4 deletions

View File

@ -467,7 +467,6 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
scanheader=file->provider[0];
provided->numproviders=file->numproviders;
provided->numbuildproviders=0;
provided->buildpriority=0;
provided->provider=file->provider;
provided->flags=0;
} else {
@ -482,7 +481,6 @@ resolveFirstLevelDependencies(struct configTag *ct, int archidx)
if (scanheader) {
provided->numproviders=1;
provided->numbuildproviders=0;
provided->buildpriority=0;
provided->provider=malloc(sizeof(struct headerList*));
provided->provider[0]=scanheader;
provided->flags=0;
@ -720,7 +718,6 @@ resolveFirstLevelSourceDependencies(struct configTag *ct, int archidx)
file=findOrCreateFileTreeEntry(&ct->filetree[archidx],currsourceheader->require[i]->name);
if (file->numproviders > 0) {
provided->numbuildproviders=file->numproviders;
provided->buildpriority=0;
provided->buildprovider=file->provider;
provided->flags=0;
logmsg(LOG_DEBUG,"file %s is a build provider for %s",currsourceheader->require[i]->name,currsourceheader->name);

View File

@ -30,7 +30,6 @@ struct providedList {
int numbuildproviders;
struct headerList **buildprovider;
char **version;
int buildpriority;
struct providedList *next;
long id;
};