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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,6 +135,6 @@ int main(int argc, const char** argv)
compressFile_orDie(inFilename, outFilename, cLevel, nbThreads); compressFile_orDie(inFilename, outFilename, cLevel, nbThreads);
free(outFilename); /* not strictly required, since program execution stops there, 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; return 0;
} }