From: Ken Raeburn Date: Fri, 19 Jul 2002 14:37:13 +0000 (+0000) Subject: (emacs_write): Buffer pointer now const. X-Git-Tag: ttn-vms-21-2-B4~13968 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7b1cc11936ed8f1497a4364d6ffddea69d40ccd5;p=emacs.git (emacs_write): Buffer pointer now const. --- 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) int emacs_write (fildes, buf, nbyte) int fildes; - char *buf; + const char *buf; unsigned int nbyte; { register int rtnval, bytes_written;