diff options
author | Johns <johns98@gmx.net> | 2015-03-10 10:20:53 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2015-03-10 10:20:53 +0100 |
commit | 915dff8714f10732b2e23cf43f0fc2860ac5cb1d (patch) | |
tree | daf944f875973674e92cb955746511df5c0e04e8 /softhddev.c | |
parent | ca0181b1b12af971a892418f8c6ac3ec90bb97a0 (diff) | |
download | vdr-plugin-softhddevice-915dff8714f10732b2e23cf43f0fc2860ac5cb1d.tar.gz vdr-plugin-softhddevice-915dff8714f10732b2e23cf43f0fc2860ac5cb1d.tar.bz2 |
Fix bug: need signed char, if compiler has unsigned chars.
Diffstat (limited to 'softhddev.c')
-rw-r--r-- | softhddev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/softhddev.c b/softhddev.c index 79c5e31..5afe3b5 100644 --- a/softhddev.c +++ b/softhddev.c @@ -89,7 +89,7 @@ static char VdpauDecoder = 1; ///< vdpau decoder used extern int ConfigAudioBufferTime; ///< config size ms of audio buffer extern int ConfigVideoClearOnSwitch; //< clear decoder on channel switch char ConfigStartX11Server; ///< flag start the x11 server -static char ConfigStartSuspended; ///< flag to start in suspend mode +static signed char ConfigStartSuspended; ///< flag to start in suspend mode static char ConfigFullscreen; ///< fullscreen modus static const char *X11ServerArguments; ///< default command arguments static char ConfigStillDecoder; ///< hw/sw decoder for still picture |