summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-10-01 12:48:34 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-10-01 12:48:34 +0200
commit4b8ff6190172b812f68b7ec21d348f87dfb0a81a (patch)
tree289494b63d518a2bcb4e07d093aad3ca0d02e32f /tools.h
parent3f0678244fc81b27e6f1374bfdda5de68839cbff (diff)
downloadvdr-4b8ff6190172b812f68b7ec21d348f87dfb0a81a.tar.gz
vdr-4b8ff6190172b812f68b7ec21d348f87dfb0a81a.tar.bz2
Fixed the FATALERRNO macro to check for a non-zero errno value
Diffstat (limited to 'tools.h')
-rw-r--r--tools.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools.h b/tools.h
index 7ad3e763..97f42626 100644
--- a/tools.h
+++ b/tools.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.h 1.78 2005/09/25 12:54:58 kls Exp $
+ * $Id: tools.h 1.79 2005/10/01 12:43:31 kls Exp $
*/
#ifndef __TOOLS_H
@@ -45,7 +45,7 @@ extern int SysLogLevel;
#define DELETENULL(p) (delete (p), p = NULL)
#define CHECK(s) { if ((s) < 0) LOG_ERROR; } // used for 'ioctl()' calls
-#define FATALERRNO (errno != EAGAIN && errno != EINTR)
+#define FATALERRNO (errno && errno != EAGAIN && errno != EINTR)
#ifndef __STL_CONFIG_H // in case some plugin needs to use the STL
template<class T> inline T min(T a, T b) { return a <= b ? a : b; }