Fix typo in previous patch

* src/editfns.c (styled_format): Fix stray ‘pMd’.
This commit is contained in:
Paul Eggert 2019-07-07 12:38:19 -07:00
parent 8f522efe9a
commit 1b6e9423b4

View file

@ -3500,7 +3500,7 @@ styled_format (ptrdiff_t nargs, Lisp_Object *args, bool message)
*f++ = '*';
if (! (float_conversion || conversion == 'c'))
{
memcpy (f, pMd, pMlen);
memcpy (f, PRIdMAX, pMlen);
f += pMlen;
zero_flag &= ! precision_given;
}