1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-30 09:00:31 -08:00

Avoid "discard qualifiers" error from xcode.

Copied from Perforce
 Change: 184401
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-02-20 14:45:10 +00:00
parent a889f62ded
commit 426561a8b3
2 changed files with 3 additions and 3 deletions

View file

@ -502,7 +502,7 @@ static obj_t make_symbol(size_t length, const char string[])
return obj;
}
static obj_t make_string(size_t length, char string[])
static obj_t make_string(size_t length, const char *string)
{
obj_t obj;
mps_addr_t addr;