From: Richard M. Stallman Date: Tue, 21 Mar 1995 20:02:52 +0000 (+0000) Subject: (my_edata): Declare as char array, not int. X-Git-Tag: emacs-19.34~4781 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bb8a51f54d1067cb88439e5be6e2eb83ca969f20;p=emacs.git (my_edata): Declare as char array, not int. --- diff --git a/src/lastfile.c b/src/lastfile.c index 6588a593c92..11cb8f00f2e 100644 --- a/src/lastfile.c +++ b/src/lastfile.c @@ -35,4 +35,5 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ coming from libraries. */ -char my_edata = 0; +char my_edata[] = "End of Emacs initialized data"; +