summaryrefslogtreecommitdiff
path: root/src/xine-engine/video_out.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@users.sourceforge.net>2003-04-02 12:28:08 +0000
committerBastien Nocera <hadess@users.sourceforge.net>2003-04-02 12:28:08 +0000
commit638699bd214d9106f563ab182c1d63015a90c298 (patch)
tree4fa72d2fa1b181198fa5da864d572116b4cc2b02 /src/xine-engine/video_out.c
parenteadea3df5e92e85a06fd7a6209f204b8e0394e46 (diff)
downloadxine-lib-638699bd214d9106f563ab182c1d63015a90c298.tar.gz
xine-lib-638699bd214d9106f563ab182c1d63015a90c298.tar.bz2
- remove unneeded use of pthread_exit(NULL). We do not have any cleanup
handlers, so we can just use "return NULL" instead. CVS patchset: 4533 CVS date: 2003/04/02 12:28:08
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r--src/xine-engine/video_out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c
index 3468cce0a..03d60c851 100644
--- a/src/xine-engine/video_out.c
+++ b/src/xine-engine/video_out.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out.c,v 1.151 2003/03/26 01:37:55 miguelfreitas Exp $
+ * $Id: video_out.c,v 1.152 2003/04/02 12:28:09 hadess Exp $
*
* frame allocation / queuing / scheduling / output functions
*/
@@ -939,7 +939,7 @@ static void *video_out_loop (void *this_gen) {
this->last_frame = NULL;
}
- pthread_exit(NULL);
+ return NULL;
}
/*