1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

typo: Small spelling mistake in example

Just a couple of characters:
`main` -> `may`
This commit is contained in:
Adrian Castro
2021-12-11 12:02:23 +01:00
committed by GitHub
parent 252ef866fb
commit e0f9dc0dde

View File

@ -135,6 +135,6 @@ int main(int argc, const char** argv)
compressFile_orDie(inFilename, outFilename, cLevel, nbThreads);
free(outFilename); /* not strictly required, since program execution stops there,
* but some static analyzer main complain otherwise */
* but some static analyzer may complain otherwise */
return 0;
}