Skip to content

Commit

Permalink
Silence a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Murray S. Kucherawy committed May 16, 2018
1 parent b9fa591 commit 720cc93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libopendkim/dkim.c
Original file line number Diff line number Diff line change
Expand Up @@ -8444,7 +8444,8 @@ dkim_sig_getalgorithm(DKIM_SIGINFO *siginfo)
{
assert(siginfo != NULL);

return dkim_code_to_name(algorithms, siginfo->sig_signalg);
return (unsigned char *) dkim_code_to_name(algorithms,
siginfo->sig_signalg);
}

/*
Expand Down

0 comments on commit 720cc93

Please sign in to comment.