summaryrefslogtreecommitdiff
path: root/noncore/multimedia
authorharlekin <harlekin>2002-08-16 17:21:46 (UTC)
committer harlekin <harlekin>2002-08-16 17:21:46 (UTC)
commit754897cab228ab41ab317218a523b28003c285a8 (patch) (side-by-side diff)
tree83b1f248c19966de6ead9e5d4d7679d78bedc5ed /noncore/multimedia
parent6418144fafc5ffbae499bd66dfe809686484843e (diff)
downloadopie-754897cab228ab41ab317218a523b28003c285a8.zip
opie-754897cab228ab41ab317218a523b28003c285a8.tar.gz
opie-754897cab228ab41ab317218a523b28003c285a8.tar.bz2
now the memcpy tests should be skipped
Diffstat (limited to 'noncore/multimedia') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/lib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp
index d554141..3848652 100644
--- a/noncore/multimedia/opieplayer2/lib.cpp
+++ b/noncore/multimedia/opieplayer2/lib.cpp
@@ -69,25 +69,25 @@ Lib::Lib(XineVideoWidget* widget) {
m_video = false;
m_wid = widget;
printf("Lib");
QCString str( getenv("HOME") );
str += "/Settings/opiexine.cf";
// get the configuration
// not really OO, should be an extra class, later
if ( !QFile(str).exists() ) {
QFile f(str);
f.open(IO_WriteOnly);
QTextStream ts( &f );
- ts << "misc.memcpy_method:glibc";
+ ts << "misc.memcpy_method:glibc \n";
f.close();
}
m_config = xine_config_file_init( str.data() );
// allocate oss for sound
// and fb for framebuffer
m_audioOutput= xine_load_audio_output_plugin( m_config, "oss") ;
if (m_audioOutput == NULL )
printf("Failure\n");
else
printf("Success\n");