From: Steve Holme Date: Sun, 28 Dec 2014 20:43:16 +0000 (+0000) Subject: test1509: Fixed compilation warning X-Git-Tag: curl-7_40_0~62 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8273e198ccba561464c34d80fecbd050dc26511;p=thirdparty%2Fcurl.git test1509: Fixed compilation warning lib1509.c:93:18: warning: conversion to 'long int' from 'size_t' may alter its value --- diff --git a/tests/libtest/lib1509.c b/tests/libtest/lib1509.c index 3c86a36b2e..f67c7d6ea6 100644 --- a/tests/libtest/lib1509.c +++ b/tests/libtest/lib1509.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -28,7 +28,7 @@ size_t WriteOutput(void *ptr, size_t size, size_t nmemb, void *stream); size_t WriteHeader(void *ptr, size_t size, size_t nmemb, void *stream); -long realHeaderSize = 0; +unsigned long realHeaderSize = 0; int test(char *URL) { @@ -90,7 +90,8 @@ size_t WriteHeader(void *ptr, size_t size, size_t nmemb, void *stream) { (void)ptr; (void)stream; - realHeaderSize += size * nmemb; + + realHeaderSize += curlx_uztoul(size * nmemb); return nmemb * size; }