diff options
Diffstat (limited to 'g10/plaintext.c')
-rw-r--r-- | g10/plaintext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/plaintext.c b/g10/plaintext.c index 89322670e..62cdd081f 100644 --- a/g10/plaintext.c +++ b/g10/plaintext.c @@ -401,7 +401,7 @@ ask_for_detached_datafile( MD_HANDLE md, MD_HANDLE md2, do_hash( md, md2, fp, textmode ); iobuf_close(fp); if (dealloc_pfx_name) - m_free (pfx.what); + m_free ((void *)pfx.what); leave: m_free(answer); @@ -428,7 +428,7 @@ hash_datafiles( MD_HANDLE md, MD_HANDLE md2, STRLIST files, if( fp ) { do_hash( md, md2, fp, textmode ); iobuf_close(fp); - m_free (pfx.what); + m_free ((void *)pfx.what); return 0; } log_error (_("no signed data\n")); |