diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-30 18:56:32 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-07-30 18:56:32 +0000 |
commit | 0c52dd6f8816a72d8309f0b059afb0c3393f17cf (patch) | |
tree | 558b1c12f214f22664ab504b2f54826a9d7d2aca | |
parent | 8520fa13d35e42da7352772b499beef258723d43 (diff) |
Clear compiler warnings. (Stefan Dirsch)XORG-6_99_99_900XORG-6_8_99_901XORG-6_8_99_900
-rw-r--r-- | src/builtins/fpe.c | 4 | ||||
-rw-r--r-- | src/builtins/render.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/builtins/fpe.c b/src/builtins/fpe.c index 58cfd59..f4ee93a 100644 --- a/src/builtins/fpe.c +++ b/src/builtins/fpe.c @@ -1,3 +1,4 @@ +/* $XdotOrg: $ */ /* * Id: fpe.c,v 1.2 1999/11/02 06:16:48 keithp Exp $ * @@ -74,7 +75,8 @@ BuiltinFreeFPE (fpe) return Successful; } -BuiltinRegisterFpeFunctions() +void +BuiltinRegisterFpeFunctions(void) { BuiltinRegisterFontFileFunctions (); diff --git a/src/builtins/render.c b/src/builtins/render.c index 5e8c5ae..39a8f07 100644 --- a/src/builtins/render.c +++ b/src/builtins/render.c @@ -1,3 +1,4 @@ +/* $XdotOrg: $ */ /* * Id: render.c,v 1.2 1999/11/02 06:16:48 keithp Exp $ * @@ -103,7 +104,8 @@ static FontRendererRec renderers[] = { #define numRenderers (sizeof renderers / sizeof renderers[0]) -BuiltinRegisterFontFileFunctions() +void +BuiltinRegisterFontFileFunctions(void) { int i; for (i = 0; i < numRenderers; i++) |