diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-11-22 23:36:04 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-11-22 23:36:04 +0000 |
commit | b7a9bb48117ba031bbd86ac511fa9814293fa502 (patch) | |
tree | 336ce943fbec65d72f0b1c9d1700f7db07e0d2d1 | |
parent | 19027e59fd45790639770a50ba8e55ea4ef999be (diff) | |
download | xine-lib-b7a9bb48117ba031bbd86ac511fa9814293fa502.tar.gz xine-lib-b7a9bb48117ba031bbd86ac511fa9814293fa502.tar.bz2 |
wrong response on non-linux platforms fixed
CVS patchset: 3343
CVS date: 2002/11/22 23:36:04
-rw-r--r-- | src/xine-utils/xine_check.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-utils/xine_check.c b/src/xine-utils/xine_check.c index 9b846969e..38580b182 100644 --- a/src/xine-utils/xine_check.c +++ b/src/xine-utils/xine_check.c @@ -451,7 +451,8 @@ xine_health_check_t* xine_health_check (xine_health_check_t* hc, int check_num) hc->title = "xine health check not supported on this platform"; hc->explanation = "contact the xine-devel mailing list if you'd like to\n" "contribute code for your platform."; - set_hc_result(hc, XINE_HEALTH_CHECK_UNSUPPORTED, "xine health check not supported on the OS.\n"); + set_hc_result(hc, XINE_HEALTH_CHECK_NO_SUCH_CHECK, + "xine health check not supported on the OS.\n"); return hc; } #endif /* !__linux__ */ |