diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-06-06 09:25:48 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-06-06 09:25:48 +0200 |
commit | dc775bc5f89461c0e6808a7464bee6f8ae818499 (patch) | |
tree | 6888f1182c910af124d6b98e9fd60b47d334fa10 /config.h | |
parent | ec47c4f9326505c42af9aa9c02334f219ee7b701 (diff) | |
download | vdr-dc775bc5f89461c0e6808a7464bee6f8ae818499.tar.gz vdr-dc775bc5f89461c0e6808a7464bee6f8ae818499.tar.bz2 |
Fixed false positives when checking the locking sequence, in case of nested locks within the same thread
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 4.10 2017/05/28 12:42:49 kls Exp $ + * $Id: config.h 4.11 2017/06/05 11:15:37 kls Exp $ */ #ifndef __CONFIG_H @@ -22,13 +22,13 @@ // VDR's own version number: -#define VDRVERSION "2.3.6" -#define VDRVERSNUM 20306 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "2.3.7" +#define VDRVERSNUM 20307 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: -#define APIVERSION "2.3.6" -#define APIVERSNUM 20306 // Version * 10000 + Major * 100 + Minor +#define APIVERSION "2.3.7" +#define APIVERSNUM 20307 // Version * 10000 + Major * 100 + Minor // When loading plugins, VDR searches them by their APIVERSION, which // may be smaller than VDRVERSION in case there have been no changes to |