Fix compiler warning

pkcs15-dnie.c:242:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
 const char *sc_driver_version()
             ^
This commit is contained in:
Ludovic Rousseau 2014-10-01 22:05:01 +02:00 committed by Ludovic Rousseau
parent fb7bbf1e80
commit 09c2847b7e
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ static int sc_pkcs15emu_dnie_init(sc_pkcs15_card_t * p15card)
/* Public Functions When called as DLL Module*/
/********************************************/
const char *sc_driver_version()
const char *sc_driver_version(void)
{
return "0.12.3-svn"; /* defined in config.h of OpenSC */
}