diff options
author | schmirl <schmirl> | 2008-03-13 15:58:24 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2008-03-13 15:58:24 +0000 |
commit | 650b4d5443fb5d1980f69170124893a1f6b27c9e (patch) | |
tree | 512574cc22b071f27f319a1222eb4f6e787eec2c | |
parent | e54f9e4fbe3062ed6fb63d0222a0587c9d236830 (diff) | |
download | vdr-plugin-streamdev-650b4d5443fb5d1980f69170124893a1f6b27c9e.tar.gz vdr-plugin-streamdev-650b4d5443fb5d1980f69170124893a1f6b27c9e.tar.bz2 |
Fixed compiler warning
-rw-r--r-- | tools/select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/select.c b/tools/select.c index 9568110..2a3abe5 100644 --- a/tools/select.c +++ b/tools/select.c @@ -16,7 +16,7 @@ cTBSelect::~cTBSelect() { int cTBSelect::Select(uint TimeoutMs) { struct timeval tv; - ssize_t res; + ssize_t res = 0; int ms; tv.tv_usec = (TimeoutMs % 1000) * 1000; |