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/goom_tools.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/goom_tools.h')
-rw-r--r-- | src/post/goom/goom_tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/goom/goom_tools.h b/src/post/goom/goom_tools.h index 8e4fdd314..cb2148e31 100644 --- a/src/post/goom/goom_tools.h +++ b/src/post/goom/goom_tools.h @@ -14,7 +14,7 @@ static unsigned short rand_pos; while (rand_pos != 0) rand_tab [rand_pos++] = rand () ; -static inline int RAND() { +static inline int RAND(void) { ++rand_pos; return rand_tab[rand_pos]; } |