diff options
Diffstat (limited to 'Build/source/texk/bibtexu/utils.c')
-rw-r--r-- | Build/source/texk/bibtexu/utils.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/bibtexu/utils.c b/Build/source/texk/bibtexu/utils.c index 6d27809fefa..ee272b211da 100644 --- a/Build/source/texk/bibtexu/utils.c +++ b/Build/source/texk/bibtexu/utils.c @@ -1794,11 +1794,11 @@ int c8read_csf (void) */ free (name_of_file); name_of_file = (unsigned char *) mymalloc (strlen (Str_csfile) + 5, "name_of_file"); - strcpy (name_of_file, Str_csfile); + strcpy ((char *)name_of_file, Str_csfile); - if (strchr (name_of_file, '.') == NULL) - strcat (name_of_file, ".csf"); - name_length = strlen (name_of_file); + if (strchr ((char *)name_of_file, '.') == NULL) + strcat ((char *)name_of_file, ".csf"); + name_length = strlen ((char *)name_of_file); debug_msg (DBG_CSF, "c8read_csf: trying to open CS file `%s' ...", name_of_file); |