diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-12-08 15:50:28 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-12-08 15:50:28 -0800 |
commit | 1b8f90aa8b1017c74b254db2f398131b857323d4 (patch) | |
tree | bae1ceb1b5c4d84c3f068d9f5712ed7500a72d15 /record | |
parent | 955b9f23a34cc79a5cd9676b45b3df4ffcc7302b (diff) |
Miscellaneous compilation warning fixes
main.c:134: warning: no previous prototype for 'dix_main'
rootlessScreen.c: In function 'RootlessMarkOverlappedWindows':
rootlessScreen.c:434: warning: function declaration isn't a prototype
backtrace.c:51: warning: format '%lx' expects type 'long unsigned int', but argument 5 has type 'int'
backtrace.c:54: warning: format '%lx' expects type 'long unsigned int', but argument 5 has type 'int'
set.c: In function 'RecordSetMemoryRequirements':
set.c:413: warning: old-style function definition
set.c: In function 'RecordCreateSet':
set.c:425: warning: old-style function definition
stub.c: In function ‘main’:
stub.c:236: warning: ISO C90 forbids mixed declarations and code
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
Diffstat (limited to 'record')
-rw-r--r-- | record/set.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/record/set.c b/record/set.c index 453452ec6..f0e094eed 100644 --- a/record/set.c +++ b/record/set.c @@ -406,10 +406,7 @@ _RecordSetMemoryRequirements(RecordSetInterval *pIntervals, int nIntervals, /* user-visible functions */ int -RecordSetMemoryRequirements(pIntervals, nIntervals, alignment) - RecordSetInterval *pIntervals; - int nIntervals; - int *alignment; +RecordSetMemoryRequirements(RecordSetInterval *pIntervals, int nIntervals, int *alignment) { RecordCreateSetProcPtr pCreateSet; return _RecordSetMemoryRequirements(pIntervals, nIntervals, alignment, @@ -417,11 +414,7 @@ RecordSetMemoryRequirements(pIntervals, nIntervals, alignment) } RecordSetPtr -RecordCreateSet(pIntervals, nIntervals, pMem, memsize) - RecordSetInterval *pIntervals; - int nIntervals; - void *pMem; - int memsize; +RecordCreateSet(RecordSetInterval *pIntervals, int nIntervals, void *pMem, int memsize) { RecordCreateSetProcPtr pCreateSet; int alignment; |