aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-06-27 09:19:58 -0700
committerJunio C Hamano <gitster@pobox.com>2024-06-27 09:19:58 -0700
commit424a13db64545b5c9d1a91bceda4388bebc78865 (patch)
tree0349f20fdcf49c42918c60416380a4885887fc74
parentMerge branch 'kz/merge-fail-early-upon-refresh-failure' (diff)
parentmingw: drop bogus (and unneeded) declaration of `_pgmptr` (diff)
downloadgit-424a13db64545b5c9d1a91bceda4388bebc78865.tar.gz
git-424a13db64545b5c9d1a91bceda4388bebc78865.zip
Merge branch 'js/mingw-remove-unused-extern-decl'
An unused extern declaration for mingw has been removed to prevent it from causing build failure. * js/mingw-remove-unused-extern-decl: mingw: drop bogus (and unneeded) declaration of `_pgmptr`
Diffstat (limited to '')
-rw-r--r--compat/mingw.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/compat/mingw.c b/compat/mingw.c
index d378cd04cb..6097b8f9e6 100644
--- a/compat/mingw.c
+++ b/compat/mingw.c
@@ -26,7 +26,6 @@ static const int delay[] = { 0, 1, 10, 20, 40 };
void open_in_gdb(void)
{
static struct child_process cp = CHILD_PROCESS_INIT;
- extern char *_pgmptr;
strvec_pushl(&cp.args, "mintty", "gdb", NULL);
strvec_pushf(&cp.args, "--pid=%d", getpid());