diff options
Diffstat (limited to 'build-aux/list2typedef')
-rwxr-xr-x | build-aux/list2typedef | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/list2typedef b/build-aux/list2typedef index fdb5c59..3a18cf3 100755 --- a/build-aux/list2typedef +++ b/build-aux/list2typedef @@ -66,7 +66,7 @@ output-item() local name; read -r name local -r const=$( constify "$typedef" <<< "$name" ) - local -r value=$( hash-name "$bytes" <<< "$name" ) + local -r value=$( echo -n "$name" | hash-name "$bytes" ) assert-collision "$const" "$value" |