aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2002-07-16 19:49:00 +0000
committerKen Raeburn2002-07-16 19:49:00 +0000
commit8c2ba7decc2e14a9190f7701727dda29ad3b6410 (patch)
treec2a2bc2d71f84371cded48068cc248c4da9ffde7 /src
parent96b8056145bbc48a0641a6ddb8e2b56620a08e65 (diff)
downloademacs-8c2ba7decc2e14a9190f7701727dda29ad3b6410.tar.gz
emacs-8c2ba7decc2e14a9190f7701727dda29ad3b6410.zip
(emacs_open, set_file_times): String pointer args now
point to const.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 9b49f72b4eb..8b8aa0b8c98 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -3262,7 +3262,7 @@ strerror (errnum)
3262 3262
3263int 3263int
3264emacs_open (path, oflag, mode) 3264emacs_open (path, oflag, mode)
3265 char *path; 3265 const char *path;
3266 int oflag, mode; 3266 int oflag, mode;
3267{ 3267{
3268 register int rtnval; 3268 register int rtnval;
@@ -3685,7 +3685,7 @@ readdirver (dirp)
3685 3685
3686int 3686int
3687set_file_times (filename, atime, mtime) 3687set_file_times (filename, atime, mtime)
3688 char *filename; 3688 const char *filename;
3689 EMACS_TIME atime, mtime; 3689 EMACS_TIME atime, mtime;
3690{ 3690{
3691#ifdef HAVE_UTIMES 3691#ifdef HAVE_UTIMES