summaryrefslogtreecommitdiff
path: root/src/process.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-04-29 00:55:25 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2011-04-29 00:55:25 -0700
commit8727937b9656243b361ba3d8d12ff1ac502a9080 (patch)
treee0c9ddbc3558e9b0939a3f61e0776b216c9509ff /src/process.c
parent8ac068ac0c00afa85bc4df54032b7a855c639312 (diff)
downloademacs-8727937b9656243b361ba3d8d12ff1ac502a9080.tar.gz
* lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c
index 1544522ff55..59d1b9ea77f 100644
--- a/src/process.c
+++ b/src/process.c
@@ -28,9 +28,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include <sys/file.h>
#include <sys/stat.h>
#include <setjmp.h>
-#ifdef HAVE_INTTYPES_H
-#include <inttypes.h>
-#endif
#include <unistd.h>
#include <fcntl.h>
@@ -4539,7 +4536,7 @@ wait_reading_process_output (int time_limit, int microsecs, int read_kbd,
some data in the TCP buffers so that select works, but
with custom pull/push functions we need to check if some
data is available in the buffers manually. */
- if (nfds == 0 &&
+ if (nfds == 0 &&
wait_proc && wait_proc->gnutls_p /* Check for valid process. */
/* Do we have pending data? */
&& gnutls_record_check_pending (wait_proc->gnutls_state) > 0)