fix compilation error - missing if
diff --git a/library/psa_crypto.c b/library/psa_crypto.c
index 4f02bb2..56f3e1d 100644
--- a/library/psa_crypto.c
+++ b/library/psa_crypto.c
@@ -989,7 +989,7 @@
         return( status );
     slot = &global_data.key_slots[key];
 
-    \ ( slot->policy.usage & PSA_KEY_USAGE_SIGN ) != 0 )
+    if( ( slot->policy.usage & PSA_KEY_USAGE_SIGN ) != 0 )
         operation->key_usage_sign = 1;
 
     if( ( slot->policy.usage & PSA_KEY_USAGE_VERIFY ) != 0 )