Fix format %x -> %lx in des_string_to_key

This commit is contained in:
Hallvard Furuseth 1999-08-02 05:25:17 +00:00
parent a9871d7402
commit 2da4fca5c3

View File

@ -122,7 +122,7 @@ des_string_to_key( char *str, register des_cblock *key )
#ifdef USE_DES_DEBUG
if (des_debug)
fprintf(stdout,
"\nResulting string_to_key = 0x%x 0x%x\n",
"\nResulting string_to_key = 0x%lx 0x%lx\n",
*((unsigned long *) key),
*((unsigned long *) key+1));
#endif