diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2002-11-21 08:08:40 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2002-11-21 08:08:40 +0000 |
commit | d83ed02625b9a0533f3447915357a6b7e85d8af7 (patch) | |
tree | 76df10ad1aa7467fdf8cb3e15a797a260d56be2b | |
parent | 367fb416e48a3267d7c8f942cb82009942ace770 (diff) | |
download | xine-lib-d83ed02625b9a0533f3447915357a6b7e85d8af7.tar.gz xine-lib-d83ed02625b9a0533f3447915357a6b7e85d8af7.tar.bz2 |
Fix typo preventing compile on non-Linux platforms
CVS patchset: 3327
CVS date: 2002/11/21 08:08:40
-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 f349f1d62..9b846969e 100644 --- a/src/xine-utils/xine_check.c +++ b/src/xine-utils/xine_check.c @@ -450,7 +450,7 @@ xine_health_check_t* xine_health_check_xv (xine_health_check_t* hc) { 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." + "contribute code for your platform."; set_hc_result(hc, XINE_HEALTH_CHECK_UNSUPPORTED, "xine health check not supported on the OS.\n"); return hc; } |