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.c | |
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.c')
-rwxr-xr-x | src/post/goom/gfontlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/goom/gfontlib.c b/src/post/goom/gfontlib.c index efae26fc5..b2ea0dca2 100755 --- a/src/post/goom/gfontlib.c +++ b/src/post/goom/gfontlib.c @@ -10,7 +10,7 @@ static int ***small_font_chars; static int *small_font_width; static int *small_font_height; -void gfont_load () { +void gfont_load (void) { unsigned char *gfont; unsigned int i = 0, j = 0; unsigned int nba = 0; |