diff options
author | David Phillips <david@sighup.nz> | 2018-04-24 17:34:52 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-04-24 17:34:52 +1200 |
commit | 1153d7757b7a12dbad4479de7c9065937f83230a (patch) | |
tree | 36df8186100a15df867909fb2d66cce5f0c41888 | |
parent | 579a6ffe7f0ec2e460d25ef6c6b4e732228e707d (diff) | |
download | sand-leek-1153d7757b7a12dbad4479de7c9065937f83230a.tar.xz |
Remove extra argument not picked up by format string
-rw-r--r-- | sand-leek-cl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sand-leek-cl.c b/sand-leek-cl.c index ce293a9..782d619 100644 --- a/sand-leek-cl.c +++ b/sand-leek-cl.c @@ -68,7 +68,7 @@ int truffle_valid(RSA *rsa_key, const char *search, uint32_t e) { onion_base32(onion, (unsigned char*)&digest); onion[16] = '\0'; - fprintf(stderr, "GPU got %s.onion\n", onion, search); + fprintf(stderr, "GPU got %s.onion\n", onion); return strncmp(onion, search, strlen(search) - 1) == 0; } |