diff options
author | phintuka <phintuka> | 2006-08-26 19:09:08 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-08-26 19:09:08 +0000 |
commit | 746976de8a01274e1d8cce9e2e76c3e6a60b7c6f (patch) | |
tree | 56878b38a0855d48680c0ba293f604521fb531c2 | |
parent | f838045bbb61c3a17924da07179fb3a7d0cae430 (diff) | |
download | xineliboutput-746976de8a01274e1d8cce9e2e76c3e6a60b7c6f.tar.gz xineliboutput-746976de8a01274e1d8cce9e2e76c3e6a60b7c6f.tar.bz2 |
Removed compiler warning
-rw-r--r-- | osd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: osd.c,v 1.4 2006-08-07 21:09:16 phintuka Exp $ + * $Id: osd.c,v 1.5 2006-08-26 19:09:08 phintuka Exp $ * */ @@ -325,7 +325,7 @@ cXinelibOsdProvider::~cXinelibOsdProvider() // Detach all OSD instances from device cXinelibOsd *osd; - while(osd = cXinelibOsd::m_OsdStack.First()) { + while(NULL != (osd = cXinelibOsd::m_OsdStack.First())) { osd->Detach(); cXinelibOsd::m_OsdStack.Del(osd, false); } |