Re: [PATCH] debuginfod: Fix implicit conversion from 'CURLcode' to 'CURLMcode'

2019-12-09 Thread Mark Wielaard
On Wed, 2019-12-04 at 02:43 +0100, Mark Wielaard wrote: > GCC10 warns when converting the value of one enum type into another: > > debuginfod-client.c:530:24: error: implicit conversion from ‘CURLcode’ >to ‘CURLMcode’ [-Werror=enum-conversion] > 530 |

[PATCH] debuginfod: Fix implicit conversion from 'CURLcode' to 'CURLMcode'

2019-12-03 Thread Mark Wielaard
GCC10 warns when converting the value of one enum type into another: debuginfod-client.c:530:24: error: implicit conversion from ‘CURLcode’ to ‘CURLMcode’ [-Werror=enum-conversion] 530 | curl_res = curl_easy_getinfo(target_handle, |