Skip to content

Commit

Permalink
Fixed compiler warning 'unused parameter'.
Browse files Browse the repository at this point in the history
  • Loading branch information
gknauf committed Jul 27, 2012
1 parent b131063 commit 11a7ac0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/idn_win32.c
Expand Up @@ -61,6 +61,7 @@ int curl_win32_idn_to_ascii(const char *in, char **out)

int curl_win32_ascii_to_idn(const char *in, size_t in_len, char **out_utf8)
{
(void)in_len; /* unused */
if(in) {
WCHAR unicode[IDN_MAX_LENGTH];

Expand Down

0 comments on commit 11a7ac0

Please sign in to comment.