diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-04-13 14:00:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-04-13 14:00:42 +0200 |
commit | 99d7fe6cf9ff07deac2924c3a24cb58279ba94e3 (patch) | |
tree | 78f9a12ba2db6b6018543214fe6079f56f0b9ebd /config.h | |
parent | 1dca27993839be4798561266457cf1bd903db028 (diff) | |
download | vdr-99d7fe6cf9ff07deac2924c3a24cb58279ba94e3.tar.gz vdr-99d7fe6cf9ff07deac2924c3a24cb58279ba94e3.tar.bz2 |
Fixed a possible division by zero in frame rate detection
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 2.76.1.7 2014/03/22 11:00:00 kls Exp $ + * $Id: config.h 2.76.1.8 2014/04/13 14:00:42 kls Exp $ */ #ifndef __CONFIG_H @@ -22,8 +22,8 @@ // VDR's own version number: -#define VDRVERSION "2.0.6" -#define VDRVERSNUM 20006 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "2.0.7" +#define VDRVERSNUM 20007 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: |