From: Mattias EngdegÄrd Date: Sat, 16 Apr 2022 10:16:45 +0000 (+0200) Subject: ; * src/sysdep.c: Fix mistake in previous commit X-Git-Tag: emacs-28.1.90~130 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dc3d1628ecd7c0090c07480606e921a1f8f348a9;p=emacs.git ; * src/sysdep.c: Fix mistake in previous commit --- diff --git a/src/sysdep.c b/src/sysdep.c index f6d7d3920bd..72be25f6610 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -4027,8 +4027,8 @@ system_process_attributes (Lisp_Object pid) #elif defined DARWIN_OS -#define HAVE_RUSAGE_INFO_CURRENT (MAC_OS_X_VERSION_MIN_REQUIRED >= 101000) -#define HAVE_PROC_PIDINFO (MAC_OS_X_VERSION_MIN_REQUIRED >= 1050) +#define HAVE_RUSAGE_INFO_CURRENT (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101000) +#define HAVE_PROC_PIDINFO (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1050) Lisp_Object system_process_attributes (Lisp_Object pid)