Fix unused variable in builds without storage
diff --git a/library/psa_crypto_slot_management.c b/library/psa_crypto_slot_management.c
index 22cac61..4f0245c 100644
--- a/library/psa_crypto_slot_management.c
+++ b/library/psa_crypto_slot_management.c
@@ -246,6 +246,7 @@
 
 #else /* MBEDTLS_PSA_CRYPTO_STORAGE_C */
     (void) id;
+    (void) creating;
     return( PSA_ERROR_NOT_SUPPORTED );
 #endif /* !MBEDTLS_PSA_CRYPTO_STORAGE_C */
 }