summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2017-06-09 08:27:22 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2017-06-09 08:27:22 +0200
commitfd3bf51f7de24a71bb1855ee558f1761bebea2e3 (patch)
treea1bc3d27beec2439d489042158895475e6aeb509 /thread.c
parent79314ab98f0615c5807f341eaefd5b016dd740d9 (diff)
downloadvdr-fd3bf51f7de24a71bb1855ee558f1761bebea2e3.tar.gz
vdr-fd3bf51f7de24a71bb1855ee558f1761bebea2e3.tar.bz2
Changed '-' to 'U' when a lock is released
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index 5d574ba8..27536791 100644
--- a/thread.c
+++ b/thread.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: thread.c 4.8 2017/06/08 08:27:32 kls Exp $
+ * $Id: thread.c 4.9 2017/06/09 08:27:22 kls Exp $
*/
#include "thread.h"
@@ -614,7 +614,7 @@ void cStateLockLog::Dump(const char *Name, tThreadId ThreadId)
if ((Flags & b) != 0)
c = '*';
if ((Changed & b) != 0)
- c = Lock ? Write ? 'W' : 'R' : '-';
+ c = Lock ? Write ? 'W' : 'R' : 'U';
q += sprintf(q, " %c", c);
}
q += sprintf(q, " %c", Lock ? 'L' : 'U');