summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/cmap_write.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvipdfm-x/cmap_write.c')
-rw-r--r--Build/source/texk/dvipdfm-x/cmap_write.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/Build/source/texk/dvipdfm-x/cmap_write.c b/Build/source/texk/dvipdfm-x/cmap_write.c
index 314a9e9526a..3af5f9acbe7 100644
--- a/Build/source/texk/dvipdfm-x/cmap_write.c
+++ b/Build/source/texk/dvipdfm-x/cmap_write.c
@@ -1,6 +1,6 @@
/* This is dvipdfmx, an eXtended version of dvipdfm by Mark A. Wicks.
- Copyright (C) 2002-2019 by Jin-Hwan Cho and Shunsaku Hirata,
+ Copyright (C) 2002-2020 by Jin-Hwan Cho and Shunsaku Hirata,
the dvipdfmx project team.
This program is free software; you can redistribute it and/or modify
@@ -240,14 +240,14 @@ write_map (mapDef *mtab, int count,
/* duplicated from pdfobj.c */
static void
-write_string (char **outptr, char *endptr, const char *strptr)
+write_string (char **outptr, char *endptr, const char *string_data)
{
- const char *s;
char *p;
+ const char *s;
int i, length;
- s = strptr;
- length = strptr ? strlen(strptr) : 0;
+ s = string_data;
+ length = string_data ? strlen(string_data) : 0;
p = *outptr;
*p++ = '(';
@@ -275,14 +275,14 @@ write_string (char **outptr, char *endptr, const char *strptr)
}
static void
-write_name (char **outptr, char *endptr, const char *name)
+write_name (char **outptr, char *endptr, const char *name_data)
{
- const char *s;
char *p;
+ const char *s;
int i, length;
- s = name;
- length = name ? strlen(name) : 0;
+ s = name_data;
+ length = name_data ? strlen(name_data) : 0;
p = *outptr;
#ifndef is_delim
/* Avoid '{' and '}' for PostScript compatibility? */