diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2002-11-04 00:55:36 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2002-11-04 00:55:36 +0000 |
commit | ae042814807484a88cff7de06c35108a892c8560 (patch) | |
tree | 5abd944dd97dc2d52ac0b0f3cb31fc82e43d58d8 | |
parent | 2ebab9ec4a93cf17ab2c781425e13816f1af08e4 (diff) | |
download | xine-lib-ae042814807484a88cff7de06c35108a892c8560.tar.gz xine-lib-ae042814807484a88cff7de06c35108a892c8560.tar.bz2 |
Fix a compile bug for non-intel platforms.
CVS patchset: 3181
CVS date: 2002/11/04 00:55:36
-rw-r--r-- | src/xine-utils/xine_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-utils/xine_check.c b/src/xine-utils/xine_check.c index 1755d5ac6..d064cb58f 100644 --- a/src/xine-utils/xine_check.c +++ b/src/xine-utils/xine_check.c @@ -347,7 +347,7 @@ xine_health_check_xv (xine_health_check_t* hc) { #else /* !__linux__ */ xine_health_check_t* -xine_health_check (xine_health_check_t* hc) +xine_health_check (xine_health_check_t* hc, int check_num) { hc->status = XINE_HEALTH_CHECK_UNSUPPORTED; hc->msg = "Xine health check not supported on the OS.\n"; |