From: Richard M. Stallman Date: Fri, 14 Apr 1995 18:28:45 +0000 (+0000) Subject: (get_doc_string): Add cast. X-Git-Tag: emacs-19.34~4412 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a039f5340b8c0c9703bee5e791aeb4d3ad1ee12a;p=emacs.git (get_doc_string): Add cast. --- diff --git a/src/doc.c b/src/doc.c index 696f4539a29..07dd80aaee2 100644 --- a/src/doc.c +++ b/src/doc.c @@ -131,7 +131,7 @@ get_doc_string (filepos) } else { - name = XSTRING (file)->data; + name = (char *) XSTRING (file)->data; } fd = open (name, O_RDONLY, 0);