aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index d8851c56cf0..8fbd8ac92e2 100644
--- a/src/process.c
+++ b/src/process.c
@@ -3041,7 +3041,7 @@ usage: (make-network-process &rest ARGS) */)
3041 portstring = "0"; 3041 portstring = "0";
3042 else if (INTEGERP (service)) 3042 else if (INTEGERP (service))
3043 { 3043 {
3044 sprintf (portbuf, "%ld", (long) XINT (service)); 3044 sprintf (portbuf, "%"pI"d", XINT (service));
3045 portstring = portbuf; 3045 portstring = portbuf;
3046 } 3046 }
3047 else 3047 else