Skip to content

Commit eeec1f6

Browse files
authored
Merge pull request #97 from ivonastojanovic/fix_windows_files
Fix syntax error
2 parents 444453c + 1d3ad3c commit eeec1f6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Python/remote_debugging.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,7 @@ search_map_for_section(proc_handle_t *handle, const char* secname, const char* m
423423
#ifdef MS_WINDOWS
424424

425425
static uintptr_t
426-
static uintptr_t
427-
search_map_for_section(proc_handle_t *handle, const char* secname, const char* substr) {
426+
search_map_for_section(proc_handle_t* handle, const char* secname, const char* substr) {
428427
//TODO: Implement this function
429428
PyErr_SetString(PyExc_RuntimeError, "search_map_for_section not implemented on Windows");
430429
return 0;
@@ -781,4 +780,4 @@ _PySysRemoteDebug_SendExec(int pid, int tid, const char *debugger_script_path)
781780

782781
cleanup_proc_handle(&handle);
783782
return 0;
784-
}
783+
}

0 commit comments

Comments
 (0)