aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorKen Raeburn2002-07-19 14:37:13 +0000
committerKen Raeburn2002-07-19 14:37:13 +0000
commit7b1cc11936ed8f1497a4364d6ffddea69d40ccd5 (patch)
tree00228f0507ecce698614c488a061d55389665a8e /src/sysdep.c
parentdffb0c47f49a35c3ec7c10e943572507da89aa51 (diff)
downloademacs-7b1cc11936ed8f1497a4364d6ffddea69d40ccd5.tar.gz
emacs-7b1cc11936ed8f1497a4364d6ffddea69d40ccd5.zip
(emacs_write): Buffer pointer now const.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c2
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)
3313int 3313int
3314emacs_write (fildes, buf, nbyte) 3314emacs_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;