cURL / Mailing Lists / curl-library / Single Mail

curl-library

Re: [curl] multi: Fix compile warning on 64-bit systems.

From: Ben Greear <greearb_at_candelatech.com>
Date: Tue, 24 Aug 2010 16:40:00 -0700

On 08/24/2010 04:33 PM, Guenter wrote:
> Hi Daniel,
> Am 20.08.2010 20:07, schrieb Ben Greear:
>> Signed-off-by: Ben Greear<greearb_at_candelatech.com>
>> ---
>> :100644 100644 dd196b7... 0819d5b... M lib/multi.c
>> lib/multi.c | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/lib/multi.c b/lib/multi.c
>> index dd196b7..0819d5b 100644
>> --- a/lib/multi.c
>> +++ b/lib/multi.c
>> @@ -1831,7 +1831,7 @@ CURLMsg *curl_multi_info_read(CURLM
>> *multi_handle, int *msgs_in_queue)
>> /* remove the extracted entry */
>> Curl_llist_remove(multi->msglist, e, NULL);
>>
>> - *msgs_in_queue = Curl_llist_count(multi->msglist);
>> + *msgs_in_queue = (int)(Curl_llist_count(multi->msglist));
>>
>> return&msg->extmsg;
>> }
> I saw you have meanwhile commited this one; I was also close to do so
> but couldnt find the right git way - can you please explain how to apply
> the patch correctly with git so that Ben appears as author, and given
> that I have the patch isolated as a file since my git has no access to
> mbox files? thanks!

You could save my email as a foo.txt file or whatever, and use 'git am' to
apply that?

Personally, no big deal if I don't get attributed for such simple
things though :)

Thanks,
Ben

>
> Gün.
>
>
> -------------------------------------------------------------------
> List admin: http://cool.haxx.se/list/listinfo/curl-library
> Etiquette: http://curl.haxx.se/mail/etiquette.html

-- 
Ben Greear <greearb_at_candelatech.com>
Candela Technologies Inc  http://www.candelatech.com
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-library
Etiquette:  http://curl.haxx.se/mail/etiquette.html
Received on 2010-08-25