summaryrefslogtreecommitdiff
path: root/src/post/goom/goom_tools.h
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-09-15 22:53:53 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-09-15 22:53:53 +0000
commit460a830e9b6b91dc635c42af44cf9c0de23fedee (patch)
treebcfe4ea1f33f102fac3b092e4371ea8e598252db /src/post/goom/goom_tools.h
parenta298fedd7291d61dcfde6227915be5e6347e0509 (diff)
downloadxine-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.h2
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];
}