diff options
author | Johns <johns98@gmx.net> | 2014-02-27 14:20:25 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2014-02-27 14:20:25 +0100 |
commit | 42bbb763fd93ee3936ea50e003c0892c791b1214 (patch) | |
tree | 48cf63741252def0d0336bb2eac4fe54a97cad4e /video.c | |
parent | 5bf2a9b761c3ce73bfd49a9cb213b795be9ca2ff (diff) | |
download | vdr-plugin-softhddevice-42bbb763fd93ee3936ea50e003c0892c791b1214.tar.gz vdr-plugin-softhddevice-42bbb763fd93ee3936ea50e003c0892c791b1214.tar.bz2 |
Fix compile with newer libav.
Diffstat (limited to 'video.c')
-rw-r--r-- | video.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -64,6 +64,7 @@ #include <stdint.h> #include <string.h> #include <unistd.h> +#include <math.h> #include <libintl.h> #define _(str) gettext(str) ///< gettext shortcut @@ -11474,7 +11475,7 @@ static void PrintVersion(void) #ifdef GIT_REV "(GIT-" GIT_REV ")" #endif - ",\n\t(c) 2009 - 2013 by Johns\n" + ",\n\t(c) 2009 - 2014 by Johns\n" "\tLicense AGPLv3: GNU Affero General Public License version 3\n"); } |