diff options
| author | Ken Raeburn | 2002-07-19 14:37:13 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-19 14:37:13 +0000 |
| commit | 7b1cc11936ed8f1497a4364d6ffddea69d40ccd5 (patch) | |
| tree | 00228f0507ecce698614c488a061d55389665a8e /src/sysdep.c | |
| parent | dffb0c47f49a35c3ec7c10e943572507da89aa51 (diff) | |
| download | emacs-7b1cc11936ed8f1497a4364d6ffddea69d40ccd5.tar.gz emacs-7b1cc11936ed8f1497a4364d6ffddea69d40ccd5.zip | |
(emacs_write): Buffer pointer now const.
Diffstat (limited to 'src/sysdep.c')
| -rw-r--r-- | src/sysdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 8b8aa0b8c98..7569c71e860 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -3313,7 +3313,7 @@ emacs_read (fildes, buf, nbyte) | |||
| 3313 | int | 3313 | int |
| 3314 | emacs_write (fildes, buf, nbyte) | 3314 | emacs_write (fildes, buf, nbyte) |
| 3315 | int fildes; | 3315 | int fildes; |
| 3316 | char *buf; | 3316 | const char *buf; |
| 3317 | unsigned int nbyte; | 3317 | unsigned int nbyte; |
| 3318 | { | 3318 | { |
| 3319 | register int rtnval, bytes_written; | 3319 | register int rtnval, bytes_written; |