]> git.eshelyaron.com Git - emacs.git/commitdiff
(sys_subshell): Cast arg to chdir.
authorKarl Heuer <kwzh@gnu.org>
Tue, 2 Jun 1998 15:52:04 +0000 (15:52 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 2 Jun 1998 15:52:04 +0000 (15:52 +0000)
(init_sys_modes): Cast arg to setbuf or setvbuf.

src/sysdep.c

index 4fad9bc1ed90b410a16aa03ac583f1b9d788094b..ca4e7b57197b779219347c60409e32255356b24f 100644 (file)
@@ -796,7 +796,7 @@ sys_subshell ()
 
       /* Use our buffer's default directory for the subshell.  */
       if (str)
-       chdir (str);
+       chdir ((char *) str);
 
 #ifdef subprocesses
       close_process_descs ();  /* Close Emacs's pipes/ptys */
@@ -1570,9 +1570,9 @@ init_sys_modes ()
   /* This symbol is defined on recent USG systems.
      Someone says without this call USG won't really buffer the file
      even with a call to setbuf. */
-  setvbuf (stdout, _sobuf, _IOFBF, sizeof _sobuf);
+  setvbuf (stdout, (char *) _sobuf, _IOFBF, sizeof _sobuf);
 #else
-  setbuf (stdout, _sobuf);
+  setbuf (stdout, (char *) _sobuf);
 #endif
 #ifdef HAVE_WINDOW_SYSTEM
   /* Emacs' window system on MSDOG uses the `internal terminal' and therefore