aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index b5e8f10bfab..4f6d2832f8d 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1268,7 +1268,7 @@ Returns nil if format of ADDRESS is invalid. */)
1268 if (VECTORP (address)) /* AF_INET or AF_INET6 */ 1268 if (VECTORP (address)) /* AF_INET or AF_INET6 */
1269 { 1269 {
1270 register struct Lisp_Vector *p = XVECTOR (address); 1270 register struct Lisp_Vector *p = XVECTOR (address);
1271 Lisp_Object args[6]; 1271 Lisp_Object args[10];
1272 int nargs, i; 1272 int nargs, i;
1273 1273
1274 if (p->size == 4 || (p->size == 5 && !NILP (omit_port))) 1274 if (p->size == 4 || (p->size == 5 && !NILP (omit_port)))
@@ -1305,7 +1305,6 @@ Returns nil if format of ADDRESS is invalid. */)
1305 args[0] = build_string ("<Family %d>"); 1305 args[0] = build_string ("<Family %d>");
1306 args[1] = Fcar (address); 1306 args[1] = Fcar (address);
1307 return Fformat (2, args); 1307 return Fformat (2, args);
1308
1309 } 1308 }
1310 1309
1311 return Qnil; 1310 return Qnil;