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.c | |
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.c')
-rw-r--r-- | src/cli/stasis/system_requirements.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/stasis/system_requirements.c b/src/cli/stasis/system_requirements.c index 4554b93..53ebbf7 100644 --- a/src/cli/stasis/system_requirements.c +++ b/src/cli/stasis/system_requirements.c @@ -67,7 +67,7 @@ void check_requirements(struct Delivery *ctx) { check_system_env_requirements(); } -char *check_pathvar(struct Delivery *ctx) { +void check_pathvar(struct Delivery *ctx) { char *pathvar = NULL; pathvar = getenv("PATH"); if (!pathvar) { |