diff options
author | Clément Bœsch <u@pkh.me> | 2013-09-04 19:51:33 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2013-09-04 21:59:34 +0200 |
commit | bc68927a0f2c26edc675a01db7ac77ab42a81d0c (patch) | |
tree | f9fff1e2c8aa834cee9f55b37c8c7a1489086d06 | |
parent | 9cbb3fce5965f4e1423cace3d1dc340a7a8091f4 (diff) | |
download | ffmpeg-bc68927a0f2c26edc675a01db7ac77ab42a81d0c.tar.gz |
tools/crypto_bench: fix 2 typos.
-rw-r--r-- | tools/crypto_bench.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/crypto_bench.c b/tools/crypto_bench.c index f584b0fd52..1a699ce684 100644 --- a/tools/crypto_bench.c +++ b/tools/crypto_bench.c @@ -257,7 +257,7 @@ static void run_implementation(const uint8_t *input, uint8_t *output, for (i = 0; i < 8; i++) /* heat caches */ impl->run(output, input, size); for (i = 0; i < nruns; i++) { - memset(output, 0, size); /* avoid lefovers from previous runs */ + memset(output, 0, size); /* avoid leftovers from previous runs */ t0 = AV_READ_TIME(); impl->run(output, input, size); t1 = AV_READ_TIME(); @@ -332,7 +332,7 @@ int main(int argc, char **argv) ((USE_EXT_LIBS) & USE_crypto) ? "+crypto" : "", ((USE_EXT_LIBS) & USE_gcrypt) ? "+gcrypt" : "", ((USE_EXT_LIBS) & USE_tomcrypt) ? "+tomcrypt" : ""); - fprintf(stderr, "Built with the following external librares:\n" + fprintf(stderr, "Built with the following external libraries:\n" "make VERSUS=%s\n", buf + 1); } else { fprintf(stderr, "Built without external libraries; use\n" |