summaryrefslogtreecommitdiff
path: root/softhddevice.cpp
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2015-03-10 10:20:53 +0100
committerJohns <johns98@gmx.net>2015-03-10 10:20:53 +0100
commit915dff8714f10732b2e23cf43f0fc2860ac5cb1d (patch)
treedaf944f875973674e92cb955746511df5c0e04e8 /softhddevice.cpp
parentca0181b1b12af971a892418f8c6ac3ec90bb97a0 (diff)
downloadvdr-plugin-softhddevice-915dff8714f10732b2e23cf43f0fc2860ac5cb1d.tar.gz
vdr-plugin-softhddevice-915dff8714f10732b2e23cf43f0fc2860ac5cb1d.tar.bz2
Fix bug: need signed char, if compiler has unsigned chars.
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r--softhddevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp
index 310855b..e933955 100644
--- a/softhddevice.cpp
+++ b/softhddevice.cpp
@@ -171,7 +171,7 @@ static volatile int DoMakePrimary; ///< switch primary device to this
#define NOT_SUSPENDED 0 ///< not suspend mode
#define SUSPEND_NORMAL 1 ///< normal suspend mode
#define SUSPEND_DETACHED 2 ///< detached suspend mode
-static char SuspendMode; ///< suspend mode
+static signed char SuspendMode; ///< suspend mode
//////////////////////////////////////////////////////////////////////////////