diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-09-15 22:53:53 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-09-15 22:53:53 +0000 |
commit | 460a830e9b6b91dc635c42af44cf9c0de23fedee (patch) | |
tree | bcfe4ea1f33f102fac3b092e4371ea8e598252db /src/post/goom/gfontlib.h | |
parent | a298fedd7291d61dcfde6227915be5e6347e0509 (diff) | |
download | xine-lib-460a830e9b6b91dc635c42af44cf9c0de23fedee.tar.gz xine-lib-460a830e9b6b91dc635c42af44cf9c0de23fedee.tar.bz2 |
avoid implicit void argument
CVS patchset: 5387
CVS date: 2003/09/15 22:53:53
Diffstat (limited to 'src/post/goom/gfontlib.h')
-rwxr-xr-x | src/post/goom/gfontlib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/post/goom/gfontlib.h b/src/post/goom/gfontlib.h index bbae2ff36..fe56024b8 100755 --- a/src/post/goom/gfontlib.h +++ b/src/post/goom/gfontlib.h @@ -1,9 +1,9 @@ #ifndef _GFONTLIB_H #define _GFONTLIB_H -void gfont_load (); +void gfont_load (void); void goom_draw_text (guint32 * buf,int resolx,int resoly, - int x, int y, - const char *str, float chspace, int center); + int x, int y, + const char *str, float chspace, int center); #endif |