diff options
author | etobi <git@e-tobi.net> | 2009-11-03 19:11:45 +0100 |
---|---|---|
committer | etobi <git@e-tobi.net> | 2009-11-03 19:11:45 +0100 |
commit | 8fe67cc6a737f26f16f20d42f110490a6c42f9ea (patch) | |
tree | f3b8c814fafd0cdfdd6a7f09324ba06744a220b7 | |
parent | 90b872ed164d8cf004b40f0128fd7a9b3ca7d27e (diff) | |
download | vdr-plugin-vodcatcher-8fe67cc6a737f26f16f20d42f110490a6c42f9ea.tar.gz vdr-plugin-vodcatcher-8fe67cc6a737f26f16f20d42f110490a6c42f9ea.tar.bz2 |
Fixed gcc-4.4 issue
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | src/Rfc822DateTime.cc | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,9 @@ VDR Plug-in 'vodcatcher' Revision History ----------------------------------------- +2009-10-03: Version 0.2.2 + - Fixed gcc-4.4 issue + 2008-08-10: Version 0.2.1 - Update of the Italian translation by Diego Pierotto <vdr-italian@tiscali.it> - Updated README @@ -22,4 +25,4 @@ VDR Plug-in 'vodcatcher' Revision History if Curl will output some verbose messages to stderr/stdout. 2007-11-25: Version 0.1.0 - * Initial Release + - Initial Release diff --git a/src/Rfc822DateTime.cc b/src/Rfc822DateTime.cc index 8b7e2a0..04592db 100644 --- a/src/Rfc822DateTime.cc +++ b/src/Rfc822DateTime.cc @@ -22,6 +22,7 @@ #include "Rfc822DateTime.h" #include <stdlib.h> +#include <stdio.h> using namespace std; |