summaryrefslogtreecommitdiff
path: root/src/process.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-04-21 21:48:13 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2012-04-21 21:48:13 -0700
commite4d81efc58695c19154d5f6733d91172b4c3e5b7 (patch)
treea3e090515c7a6c7afb302b0bcc03c241da2a9585 /src/process.h
parenta8b7caa345d8215468f558c771b703a3b89e2d77 (diff)
* process.h (struct Lisp_Process): Members tick and update_tick
are now of type EMACS_INT, not int. * process.c (process_tick, update_tick): Use EMACS_INT, not int.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.h b/src/process.h
index 3eb94cb196..edb937893b 100644
--- a/src/process.h
+++ b/src/process.h
@@ -95,9 +95,9 @@ struct Lisp_Process
/* Descriptor by which we write to this process */
int outfd;
/* Event-count of last event in which this process changed status. */
- int tick;
+ EMACS_INT tick;
/* Event-count of last such event reported. */
- int update_tick;
+ EMACS_INT update_tick;
/* Size of carryover in decoding. */
int decoding_carryover;
/* Hysteresis to try to read process output in larger blocks.