From db07cea7580fbe6a92a62c9045e8877827d73d61 Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Thu, 18 Jun 2020 18:24:45 -0700 Subject: Fix problem with Windows pids being unsigned DWORDs Had to get away from overloading PIDs with error codes, so now error codes are returned separately from the PID. --- fluid/ExternalCodeEditor_UNIX.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fluid/ExternalCodeEditor_UNIX.h') diff --git a/fluid/ExternalCodeEditor_UNIX.h b/fluid/ExternalCodeEditor_UNIX.h index e983c5cfa..355a041c7 100644 --- a/fluid/ExternalCodeEditor_UNIX.h +++ b/fluid/ExternalCodeEditor_UNIX.h @@ -31,7 +31,7 @@ public: ExternalCodeEditor(); ~ExternalCodeEditor(); int is_editing(); - pid_t reap_editor(); + int reap_editor(pid_t *pid_reaped=NULL); void close_editor(); const char *filename() { return filename_; } int open_editor(const char *editor_cmd, const char *code); -- cgit v1.2.3