From 131ed20b2f8b937e0ff0fffae1dcde8d699ce0e1 Mon Sep 17 00:00:00 2001 From: Tobias Bergkvist Date: Thu, 27 May 2021 01:56:05 +0200 Subject: [PATCH] make-c-wrapper: Remove trailing whitespace (editorconfig) --- pkgs/build-support/setup-hooks/make-c-wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/setup-hooks/make-c-wrapper.sh b/pkgs/build-support/setup-hooks/make-c-wrapper.sh index 6f024b3356c3..e018e4f161d7 100644 --- a/pkgs/build-support/setup-hooks/make-c-wrapper.sh +++ b/pkgs/build-support/setup-hooks/make-c-wrapper.sh @@ -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//\"/'\"'}