diff options
Diffstat (limited to 'src/net/download.h')
-rw-r--r-- | src/net/download.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/net/download.h b/src/net/download.h index 216f6ff2..62110918 100644 --- a/src/net/download.h +++ b/src/net/download.h @@ -18,9 +18,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <SDL_types.h> - -#include <stdio.h> +#include <cstdio> #include <string> #ifndef NET_DOWNLOAD_H @@ -62,7 +60,7 @@ class Download */ void noCache(); - void setFile(const std::string &filename, Sint64 adler32 = -1); + void setFile(const std::string &filename, int64_t adler32 = -1); void setWriteFunction(WriteFunction write); |