summaryrefslogtreecommitdiff
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-07-07 12:29:27 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-07-07 12:33:35 -0700
commit8f522efe9a963cd3523ea6863f9bd44881cdf6b7 (patch)
tree10ba28c937e142395bcc4d81580d24fa334e1227 /src/sysdep.c
parentbda8a57141e6cb5455e1246c6ab394791fd6c582 (diff)
downloademacs-8f522efe9a963cd3523ea6863f9bd44881cdf6b7.tar.gz
Remove printmax_t etc.
printmax_t etc. were needed only for platforms that lacked support for printing intmax_t. These platforms are now so obsolete that they are no longer practical porting targets. * src/image.c (gs_load): Fix unlikely buffer overrun discovered while making these changes. It was introduced in 2011-07-17T00:34:43!eggert@cs.ucla.edu. * src/lisp.h (printmax_t, uprintmax_t, pMd, pMu, pMx): Remove. All uses replaced by their standard counterparts intmax_t, uintmax_t, PRIdMAX, PRIuMAX, PRIxMAX.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 48eebb594f7..c7d7eefc2ab 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -3269,7 +3269,7 @@ system_process_attributes (Lisp_Object pid)
char *cmdline = NULL;
ptrdiff_t cmdline_size;
char c;
- printmax_t proc_id;
+ intmax_t proc_id;
int ppid, pgrp, sess, tty, tpgid, thcount;
uid_t uid;
gid_t gid;
@@ -3284,7 +3284,7 @@ system_process_attributes (Lisp_Object pid)
CHECK_NUMBER (pid);
CONS_TO_INTEGER (pid, pid_t, proc_id);
- sprintf (procfn, "/proc/%"pMd, proc_id);
+ sprintf (procfn, "/proc/%"PRIdMAX, proc_id);
if (stat (procfn, &st) < 0)
return attrs;
@@ -3505,7 +3505,7 @@ system_process_attributes (Lisp_Object pid)
struct psinfo pinfo;
int fd;
ssize_t nread;
- printmax_t proc_id;
+ intmax_t proc_id;
uid_t uid;
gid_t gid;
Lisp_Object attrs = Qnil;
@@ -3514,7 +3514,7 @@ system_process_attributes (Lisp_Object pid)
CHECK_NUMBER (pid);
CONS_TO_INTEGER (pid, pid_t, proc_id);
- sprintf (procfn, "/proc/%"pMd, proc_id);
+ sprintf (procfn, "/proc/%"PRIdMAX, proc_id);
if (stat (procfn, &st) < 0)
return attrs;