* src/coding.c (code_convert_string): Fix type mismatches.
This commit is contained in:
parent
507f26d532
commit
24c3fa9607
1 changed files with 2 additions and 2 deletions
|
@ -9524,8 +9524,8 @@ code_convert_string (Lisp_Object string, Lisp_Object coding_system,
|
|||
return (nocopy
|
||||
? string
|
||||
: (encodep
|
||||
? make_unibyte_string (SDATA (string), bytes)
|
||||
: make_multibyte_string (SDATA (string), bytes, bytes)));
|
||||
? make_unibyte_string (SSDATA (string), bytes)
|
||||
: make_multibyte_string (SSDATA (string), bytes, bytes)));
|
||||
}
|
||||
else if (BUFFERP (dst_object))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue