summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/omegafonts/list_routines.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/omegafonts/list_routines.c')
-rw-r--r--Build/source/texk/web2c/omegafonts/list_routines.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/omegafonts/list_routines.c b/Build/source/texk/web2c/omegafonts/list_routines.c
index adb5cd68891..3cac5e26588 100644
--- a/Build/source/texk/web2c/omegafonts/list_routines.c
+++ b/Build/source/texk/web2c/omegafonts/list_routines.c
@@ -64,7 +64,7 @@ return temp;
/* Attribute-value list function */
hash_list
-hash_list1 (int x, int y, int new_class, int lig_z)
+hash_list1 (int x, int y, int new_class, int lig_z, hash_list N)
{
hash_list temp;
temp = (hash_list) xmalloc(sizeof(hash_cell));
@@ -72,7 +72,7 @@ temp->x = x;
temp->y = y;
temp->new_class = new_class;
temp->lig_z = lig_z;
-temp->ptr = NULL;
+temp->ptr = N;
return temp;
}