diff options
author | Adam Jackson <ajax@redhat.com> | 2014-09-15 12:10:55 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2014-10-09 11:14:53 +0200 |
commit | 81d76a835b2f647e3051b1d93606e59db7998d76 (patch) | |
tree | d8681e80a1d712c68d94b47d814c6a88b780be1f /dix | |
parent | 322ba42c23a3a107f7a62fb1c449792b616e5eba (diff) |
dix: Lower backStorage to a bit instead of a pointer
Reviewed-by: Julien Cristau <jcristau@debian.org>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'dix')
-rw-r--r-- | dix/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dix/window.c b/dix/window.c index f227e4ce4..e1645c3e7 100644 --- a/dix/window.c +++ b/dix/window.c @@ -362,7 +362,7 @@ SetWindowToDefaults(WindowPtr pWin) pWin->cursorIsNone = TRUE; pWin->backingStore = NotUseful; - pWin->backStorage = (void *) NULL; + pWin->backStorage = 0; pWin->mapped = FALSE; /* off */ pWin->realized = FALSE; /* off */ |