summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-02-17 13:19:36 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2013-02-17 13:19:36 +0100
commit3ca58a42e7805b2bdf8537f6a1c7fa4717675f9f (patch)
treef5a2807b626631e6ec05df3f8676b1f2488342d3 /tools.h
parent212a2fea41bf1d232d28f988de442b4cea56960b (diff)
downloadvdr-3ca58a42e7805b2bdf8537f6a1c7fa4717675f9f.tar.gz
vdr-3ca58a42e7805b2bdf8537f6a1c7fa4717675f9f.tar.bz2
Removed trailing whitespace
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 70c643fc..d6a778e6 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 2.23 2012/12/06 08:59:39 kls Exp $
+ * $Id: tools.h 2.24 2013/02/17 13:18:06 kls Exp $
*/
#ifndef __TOOLS_H
@@ -45,7 +45,7 @@ extern int SysLogLevel;
#define MALLOC(type, size) (type *)malloc(sizeof(type) * (size))
-template<class T> inline void DELETENULL(T *&p) { T *q = p; p = NULL; delete q; }
+template<class T> inline void DELETENULL(T *&p) { T *q = p; p = NULL; delete q; }
#define CHECK(s) { if ((s) < 0) LOG_ERROR; } // used for 'ioctl()' calls
#define FATALERRNO (errno && errno != EAGAIN && errno != EINTR)