Fix warning: Passed ID pointer where screen pointer was expected

This commit is contained in:
Julian Eisel 2018-04-16 15:53:34 +02:00
parent 86abc4da10
commit 969c4315b1
1 changed files with 1 additions and 1 deletions

View File

@ -7211,7 +7211,7 @@ static void lib_link_screen(FileData *fd, Main *main)
sc->scrubbing = false;
for (ScrArea *area = sc->areabase.first; area; area = area->next) {
lib_link_area(fd, &sc->id, area);
lib_link_area(fd, sc, area);
}
sc->id.tag &= ~LIB_TAG_NEED_LINK;
}