diff --git a/examples/schnorr.c b/examples/schnorr.c index 6f34f599ab..adced235b3 100644 --- a/examples/schnorr.c +++ b/examples/schnorr.c @@ -43,9 +43,9 @@ int main(void) { assert(return_val); /*** Key Generation ***/ -/* If the secret key is zero or out of range (greater than secp256k1's - * order), we return 1. Note that the probability of this occurring - * is negligible with a properly functioning random number generator. */ + /* If the secret key is zero or out of range (greater than secp256k1's + * order), we return 1. Note that the probability of this occurring + * is negligible with a properly functioning random number generator. */ if (!fill_random(seckey, sizeof(seckey))) { printf("Failed to generate randomness\n"); return 1;