make-c-wrapper: Remove trailing whitespace (editorconfig)

This commit is contained in:
Tobias Bergkvist 2021-05-27 01:56:05 +02:00
parent eef4fa82c1
commit 131ed20b2f

View File

@ -13,7 +13,7 @@
# To debug a binary wrapper after you compiled it, use the `strings` command
escape_string_literal() {
# We need to make sure that special characters are escaped
# We need to make sure that special characters are escaped
# before trying to create C string literals
result=${1//$'\\'/$'\\\\'}
result=${result//\"/'\"'}