diff options
| author | Lars Ingebrigtsen | 2016-02-22 13:34:54 +1100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-02-22 13:34:54 +1100 |
| commit | 0d3c0f6f906d5494f76b8b686bae72853b1f729c (patch) | |
| tree | 7b262fcf2fcb7925f1ce3dcbd974dcb679bbaf84 | |
| parent | 41895f93be76cc1489856debaa3578f849451984 (diff) | |
| download | emacs-feature/async-dns.tar.gz emacs-feature/async-dns.zip | |
add_to_log expects Lisp parametersfeature/async-dns
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 72580a2ff49..c881a20790e 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4743,7 +4743,7 @@ wait_for_socket_fds (Lisp_Object process, char *name) | |||
| 4743 | while (XPROCESS (process)->infd < 0 && | 4743 | while (XPROCESS (process)->infd < 0 && |
| 4744 | EQ (XPROCESS (process)->status, Qconnect)) | 4744 | EQ (XPROCESS (process)->status, Qconnect)) |
| 4745 | { | 4745 | { |
| 4746 | add_to_log ("Waiting for socket from %s...\n", name); | 4746 | add_to_log ("Waiting for socket from %s...\n", build_string (name)); |
| 4747 | wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0); | 4747 | wait_reading_process_output (0, 20 * 1000 * 1000, 0, 0, Qnil, NULL, 0); |
| 4748 | } | 4748 | } |
| 4749 | } | 4749 | } |