summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-03-26 01:25:16 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-03-26 01:25:16 +0000
commit372d790a5c8cf9d4fd1cd190dab98684a744018d (patch)
tree7ab123ed94d4b9601ecd4784eb3efc2aeeb51ec2
parent58d798868d9163a6ee5a17367e947a4a1c4da0e5 (diff)
downloadxine-lib-372d790a5c8cf9d4fd1cd190dab98684a744018d.tar.gz
xine-lib-372d790a5c8cf9d4fd1cd190dab98684a744018d.tar.bz2
revert my assert to the classic macro
CVS patchset: 4484 CVS date: 2003/03/26 01:25:16
-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 19881ea7c..0a4672cd4 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.149 2003/03/24 18:30:12 holstsn Exp $
+ * $Id: video_out.c,v 1.150 2003/03/26 01:25:16 miguelfreitas Exp $
*
* frame allocation / queuing / scheduling / output functions
*/
@@ -125,7 +125,7 @@ static void vo_append_to_img_buf_queue_int (img_buf_fifo_t *queue,
vo_frame_t *img) {
/* img already enqueue? (serious leak) */
- XINE_ASSERT (img->next==NULL, "Image is already enqueue. Next image is not NULL");
+ assert (img->next==NULL);
img->next = NULL;