diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-11-04 21:38:31 +0200 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-11-08 15:29:16 +0200 |
commit | c3ea1f7db494365032526dc06a7283384bd0ecd1 (patch) | |
tree | ee7ba11e600d9eea9965b24ae3a6c4410ec4b0bd /include | |
parent | 3a9b96425851b495503bd2eb0fd0d01c08f6a097 (diff) |
dix/mi: still more warning fixes
Fix up prototypes for PrintChildren and PrintWindowTree in the dix.
Make miPrintRegion be unconditionally defined, and move the prototype into
regionstr.h.
Change a bunch of ScreenPtr pScreen = foo; to
ScreenPtr pScreen; pScreen = foo; in window.c, so we avoid unused variable
references (as inline REGION_* doesn't reference pScreen).
Diffstat (limited to 'include')
-rw-r--r-- | include/regionstr.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/regionstr.h b/include/regionstr.h index 6c39324d1..e6882e77a 100644 --- a/include/regionstr.h +++ b/include/regionstr.h @@ -321,4 +321,7 @@ extern void miRegionEmpty( extern BoxPtr miRegionExtents( RegionPtr /*pReg*/); +extern void miPrintRegion( + RegionPtr /*pReg*/); + #endif /* REGIONSTRUCT_H */ |