]> git.sesse.net Git - vlc/blobdiff - plugins/glide/intf_glide.c
Removed flooding debug info :)
[vlc] / plugins / glide / intf_glide.c
index a42a3749608f7e965c85004cca154096322ac785..93e6911de4bf56fd06017e251d6aa1eb802d866a 100644 (file)
@@ -2,6 +2,7 @@
  * intf_glide.c: 3dfx interface plugin
  *****************************************************************************
  * Copyright (C) 2000 VideoLAN
+ * $Id: intf_glide.c,v 1.6 2001/01/05 18:46:43 massiot Exp $
  *
  * Authors:
  *
@@ -26,8 +27,6 @@
 #include "defs.h"
 
 #include <stdlib.h>                                      /* malloc(), free() */
-#include <sys/types.h>                        /* on BSD, uio.h needs types.h */
-#include <sys/uio.h>                                          /* for input.h */
 #include <linutil.h>                            /* Glide kbhit() and getch() */
 
 #include "config.h"
@@ -73,7 +72,7 @@ int intf_GlideCreate( intf_thread_t *p_intf )
         p_intf->p_vout = vout_CreateThread( NULL, 0, 0, 0, NULL, 0, NULL );
         if( p_intf->p_vout == NULL )                                /* error */
         {
-            intf_ErrMsg("intf error: can't create output thread\n" );
+            intf_ErrMsg("intf error: can't create output thread" );
             return( 1 );
         }
     }
@@ -118,7 +117,7 @@ void intf_GlideManage( intf_thread_t *p_intf )
     {
         if( intf_ProcessKey(p_intf, (int)buf = getch()) )
         {
-            intf_ErrMsg( "unhandled key '%c' (%i)\n", (char) buf, buf );
+            intf_ErrMsg( "unhandled key '%c' (%i)", (char) buf, buf );
         }
     }
 }