summaryrefslogtreecommitdiffstats
path: root/libvo/vo_3dfx.c
diff options
context:
space:
mode:
authorszabii <szabii@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-24 11:30:57 +0000
committerszabii <szabii@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-24 11:30:57 +0000
commiteb30258d0725589c3ff770e1d9d67a2905a98a81 (patch)
tree2ea68b10d302b679f4762de7a29cf77c0b956c23 /libvo/vo_3dfx.c
parentc2cdf91ec90c6d3ada7a234e75a4efa9035845b7 (diff)
downloadmpv-eb30258d0725589c3ff770e1d9d67a2905a98a81.tar.bz2
mpv-eb30258d0725589c3ff770e1d9d67a2905a98a81.tar.xz
fprintf(stderr converted to printf(
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@615 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_3dfx.c')
-rw-r--r--libvo/vo_3dfx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_3dfx.c b/libvo/vo_3dfx.c
index 30f290669e..a0012ee38b 100644
--- a/libvo/vo_3dfx.c
+++ b/libvo/vo_3dfx.c
@@ -170,7 +170,7 @@ create_window(Display *display)
bpp = attribs.depth;
if (bpp != 16)
{
- fprintf(stderr,"Only 16bpp supported!");
+ printf("Only 16bpp supported!");
exit(-1);
}
@@ -336,7 +336,7 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3
// Open driver device
if ( (fd = open("/dev/3dfx",O_RDWR) ) == -1)
{
- fprintf(stderr,"Couldn't open /dev/3dfx\n");
+ printf("Couldn't open /dev/3dfx\n");
exit(1);
}