Silence compiler warning in example program

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
diff --git a/programs/psa/hmac_md_psa.c b/programs/psa/hmac_md_psa.c
index cde78f1..0a9a02b 100644
--- a/programs/psa/hmac_md_psa.c
+++ b/programs/psa/hmac_md_psa.c
@@ -159,7 +159,7 @@
     printf( "MD\n" );
     int ret = md();
     if( ret != 0 )
-        printf( "ret = %d (-0x%04x)\n", ret, -ret );
+        printf( "ret = %d (-0x%04x)\n", ret, (unsigned) -ret );
 
     psa_status_t status = psa_crypto_init();
     if( status != PSA_SUCCESS )