diff options
Diffstat (limited to 'xorg-server/exa/exa_migration_classic.c')
-rw-r--r-- | xorg-server/exa/exa_migration_classic.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xorg-server/exa/exa_migration_classic.c b/xorg-server/exa/exa_migration_classic.c index e890f6754..65bbb17ce 100644 --- a/xorg-server/exa/exa_migration_classic.c +++ b/xorg-server/exa/exa_migration_classic.c @@ -379,8 +379,8 @@ exaDoMoveInPixmap(ExaMigrationPtr migrate) void exaMoveInPixmap_classic(PixmapPtr pPixmap) { - static ExaMigrationRec migrate = {.as_dst = FALSE,.as_src = TRUE, - .pReg = NULL + static ExaMigrationRec migrate = {FALSE, TRUE, + NULL, NULL }; migrate.pPix = pPixmap; @@ -422,8 +422,8 @@ exaDoMoveOutPixmap(ExaMigrationPtr migrate) void exaMoveOutPixmap_classic(PixmapPtr pPixmap) { - static ExaMigrationRec migrate = {.as_dst = FALSE,.as_src = TRUE, - .pReg = NULL + static ExaMigrationRec migrate = { FALSE, TRUE, + NULL, NULL }; migrate.pPix = pPixmap; @@ -628,7 +628,7 @@ exaDoMigration_classic(ExaMigrationPtr pixmaps, int npixmaps, Bool can_accel) if (!exaPixmapIsDirty(pixmaps[i].pPix) && !exaAssertNotDirty(pixmaps[i].pPix)) ErrorF("%s: Pixmap %d dirty but not marked as such!\n", - __func__, i); + __FUNCTION__, i); } } /* If anything is pinned in system memory, we won't be able to |