Fix some minor nits (#298)

This commit is contained in:
Justin Traglia 2023-05-09 08:40:36 -05:00 committed by GitHub
parent 5703f6f353
commit aa8d85dbbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ publish: build bundle
# Run ref-tests in linux environment for cross-compatability check
.PHONY: linux-test
linux-test: build
linux-test: bundle
@# Docker cannot copy from outside this dir
@cp -r ../../tests ref-tests
@docker build -t "linux-test" .

View File

@ -1890,9 +1890,9 @@ static void free_fft_settings(FFTSettings *fs) {
/**
* Free the memory that was previously allocated by new_kzg_settings().
*
* @remark It's a NOP if `ks` is NULL.
* @remark It's a NOP if `s` is NULL.
*
* @param[in] ks The settings to be freed
* @param[in] s The settings to be freed
*/
static void free_kzg_settings(KZGSettings *s) {
if (s == NULL) return;