diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-10-24 16:23:12 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-10-24 16:23:12 -0400 |
commit | 58670e17e7a24c00752189365cb65f5c11252264 (patch) | |
tree | d3051b692717965f0d1a2d1be97014579adbc00d /src/cli/stasis/system_requirements.h | |
parent | b04040a02f5f1dc3eed93de6bc549af06d79af06 (diff) | |
download | stasis-58670e17e7a24c00752189365cb65f5c11252264.tar.gz |
Change signature of check_pathvar()
* From (char *) to (void)
Diffstat (limited to 'src/cli/stasis/system_requirements.h')
-rw-r--r-- | src/cli/stasis/system_requirements.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/stasis/system_requirements.h b/src/cli/stasis/system_requirements.h index 4c2231a..3a6fa25 100644 --- a/src/cli/stasis/system_requirements.h +++ b/src/cli/stasis/system_requirements.h @@ -8,6 +8,6 @@ void check_system_env_requirements(); void check_system_requirements(struct Delivery *ctx); void check_requirements(struct Delivery *ctx); -char *check_pathvar(struct Delivery *ctx); +void check_pathvar(struct Delivery *ctx); #endif //STASIS_SYSTEM_REQUIREMENTS_H |