diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-06-05 16:33:35 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-06-05 16:33:35 +0200 |
commit | 51b02cade3f7f01207901c49fcbe2636883537ae (patch) | |
tree | c40b708ec4f73c8e379c0043d9b8665576e9329b /dvbdevice.c | |
parent | 41c96300f13fc1b3b709e0162d3dea3c6c7cf968 (diff) | |
download | vdr-51b02cade3f7f01207901c49fcbe2636883537ae.tar.gz vdr-51b02cade3f7f01207901c49fcbe2636883537ae.tar.bz2 |
Fixed a typo
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 5f50cde1..58ae55a5 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.87 2004/06/05 14:35:36 kls Exp $ + * $Id: dvbdevice.c 1.88 2004/06/05 16:33:35 kls Exp $ */ #include "dvbdevice.h" @@ -561,15 +561,15 @@ void cDvbDevice::SetVideoFormat(bool VideoFormat16_9) eVideoSystem cDvbDevice::GetVideoSystem(void) { - eVideoSystem VideoSytem = vsPAL; + eVideoSystem VideoSystem = vsPAL; video_size_t vs; if (ioctl(fd_video, VIDEO_GET_SIZE, &vs) == 0) { if (vs.h == 480 || vs.h == 240) - VideoSytem = vsNTSC; + VideoSystem = vsNTSC; } else LOG_ERROR; - return VideoSytem; + return VideoSystem; } // ptAudio ptVideo ptPcr ptTeletext ptDolby ptOther |