diff options
| author | Juanma Barranquero | 2011-05-05 01:56:09 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-05-05 01:56:09 +0200 |
| commit | e968f4f300f67fe65ea5df010e6ee461f5d6df92 (patch) | |
| tree | e66fd3d5b04f6b18be5a49f6e9ec00067f990d76 /src/gnutls.h | |
| parent | 84d358f0d559acc398b019660c4a1a3a50fd6bb2 (diff) | |
| download | emacs-e968f4f300f67fe65ea5df010e6ee461f5d6df92.tar.gz emacs-e968f4f300f67fe65ea5df010e6ee461f5d6df92.zip | |
src/gnutls.c: Remove unused parameter `fildes'.
* gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
* gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
Remove unused parameter `fildes'.
* process.c (read_process_output, send_process): Don't pass it.
Diffstat (limited to 'src/gnutls.h')
| -rw-r--r-- | src/gnutls.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gnutls.h b/src/gnutls.h index afe6337fac2..e2a9bc9eaea 100644 --- a/src/gnutls.h +++ b/src/gnutls.h | |||
| @@ -54,11 +54,9 @@ typedef enum | |||
| 54 | #define GNUTLS_LOG2(level, max, string, extra) if (level <= max) { gnutls_log_function2 (level, "(Emacs) " string, extra); } | 54 | #define GNUTLS_LOG2(level, max, string, extra) if (level <= max) { gnutls_log_function2 (level, "(Emacs) " string, extra); } |
| 55 | 55 | ||
| 56 | extern EMACS_INT | 56 | extern EMACS_INT |
| 57 | emacs_gnutls_write (int fildes, struct Lisp_Process *proc, const char *buf, | 57 | emacs_gnutls_write (struct Lisp_Process *proc, const char *buf, EMACS_INT nbyte); |
| 58 | EMACS_INT nbyte); | ||
| 59 | extern EMACS_INT | 58 | extern EMACS_INT |
| 60 | emacs_gnutls_read (int fildes, struct Lisp_Process *proc, char *buf, | 59 | emacs_gnutls_read (struct Lisp_Process *proc, char *buf, EMACS_INT nbyte); |
| 61 | EMACS_INT nbyte); | ||
| 62 | 60 | ||
| 63 | extern int emacs_gnutls_record_check_pending (gnutls_session_t state); | 61 | extern int emacs_gnutls_record_check_pending (gnutls_session_t state); |
| 64 | extern void emacs_gnutls_transport_set_errno (gnutls_session_t state, int err); | 62 | extern void emacs_gnutls_transport_set_errno (gnutls_session_t state, int err); |