diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-06-27 09:19:58 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-06-27 09:19:58 -0700 |
| commit | 424a13db64545b5c9d1a91bceda4388bebc78865 (patch) | |
| tree | 0349f20fdcf49c42918c60416380a4885887fc74 | |
| parent | 6c0bfce914f951d673af91f0cad733b0d465fafb (diff) | |
| parent | 3c295c87c250889be1fd635c195ef1cc0311bfa5 (diff) | |
| download | git-424a13db64545b5c9d1a91bceda4388bebc78865.tar.xz | |
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`
| -rw-r--r-- | compat/mingw.c | 1 |
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()); |
