aboutsummaryrefslogtreecommitdiffstats
path: root/run-command.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-05-19 09:27:06 -0700
committerJunio C Hamano <gitster@pobox.com>2023-05-19 09:27:06 -0700
commit75ab1fa5ab167828da918f19c7aebe5ee7a1b304 (patch)
treef17c8593839d55adef507b342dd2e3495f045526 /run-command.c
parent004e0f790f947c9c511a9ac4f905021c7dbfa9e1 (diff)
parent52c0f3318d98dd065ceb68d91bb6720eee20deb3 (diff)
downloadgit-75ab1fa5ab167828da918f19c7aebe5ee7a1b304.tar.gz
Merge branch 'tb/run-command-needs-alloc-h'
Fix the build problem with NO_PTHREADS defined, a fallout from recent header file shuffling. * tb/run-command-needs-alloc-h: run-command.c: fix missing include under `NO_PTHREADS`
Diffstat (limited to 'run-command.c')
-rw-r--r--run-command.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/run-command.c b/run-command.c
index d4247d5fcc..60c9419866 100644
--- a/run-command.c
+++ b/run-command.c
@@ -16,6 +16,7 @@
#include "packfile.h"
#include "hook.h"
#include "compat/nonblock.h"
+#include "alloc.h"
void child_process_init(struct child_process *child)
{