diff options
author | Jim Meyering <jim@meyering.net> | 2003-11-05 03:49:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-11-05 03:49:29 +0000 |
commit | bea0f02fc7fa49d4f62cf91a27bf904f15c05b13 (patch) | |
tree | 7f0e009aee94a381df4971d174bff18f7a66490c | |
parent | e809d156e95e7dda30dbddc80fabd623e783641a (diff) | |
download | coreutils-bea0f02fc7fa49d4f62cf91a27bf904f15c05b13.tar.xz |
(spec_init): Fix typo in last change.
-rw-r--r-- | src/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1386,7 +1386,7 @@ get_s2_spec_stats (struct Spec_list *s2, size_t len_s1) static void spec_init (struct Spec_list *spec_list) { - struct Spec_list *new = xmalloc (sizeof *new); + struct List_element *new = xmalloc (sizeof *new); spec_list->head = spec_list->tail = new; spec_list->head->next = NULL; } |