summaryrefslogtreecommitdiff
path: root/src/jobs.c
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-06-23 11:46:02 +0530
committersinanmohd <sinan@sinanmohd.com>2024-06-23 11:47:08 +0530
commita3c16056c2ea8083db39054271f1118aed37ccc3 (patch)
treeb65ad6d8fe4e603cb000ce89501a052df75a4a99 /src/jobs.c
parent4740b89e88dff04361da7f7f3bd9e823fd75d5b2 (diff)
htab: clean up
Diffstat (limited to 'src/jobs.c')
-rw-r--r--src/jobs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jobs.c b/src/jobs.c
index 3e38b07..6f06ef9 100644
--- a/src/jobs.c
+++ b/src/jobs.c
@@ -278,8 +278,8 @@ void job_free(struct job *job)
if (job == NULL)
return;
- /* deps_filled will be decremented by recusrive call to the job_free
- * see job_deps_list_rm() in the next for loop */
+ /* deps_filled will be decremented by recusrive call to job_free()
+ * itself, see job_deps_list_rm() in the next for loop */
while (job->deps_filled)
job_free(*job->deps);
free(job->deps);
@@ -369,7 +369,7 @@ int jobs_init(FILE **stream)
char *const args[] = {
"nix-eval-jobs",
"--flake",
- "github:NixOS/nixpkgs#legacyPackages.x86_64-linux.python310Packages",
+ "github:sinanmohd/evanix#packages.x86_64-linux",
NULL,
};