From 7caf0ad318a0005a4885d6fb8ee4e3edf0aac4e0 Mon Sep 17 00:00:00 2001 From: summersamara Date: Tue, 19 Nov 2024 02:08:56 +0100 Subject: [PATCH] Fix indent style issue: use spaces not tabs --- pkgs/by-name/vi/visual-hexdiff/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/vi/visual-hexdiff/package.nix b/pkgs/by-name/vi/visual-hexdiff/package.nix index 34474f73f128..eda76f08c3ed 100644 --- a/pkgs/by-name/vi/visual-hexdiff/package.nix +++ b/pkgs/by-name/vi/visual-hexdiff/package.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { hash = "sha256-M1bmkW63pHlfl9zNWEq0EGN1rpVGo+BTUKM9ot4HWqo="; }; postPatch = '' - # Fix compiler error that wants a string literal as format string for `wprintw` + # Fix compiler error that wants a string literal as format string for `wprintw` substituteInPlace sel_file.c \ --replace-fail 'wprintw(win, txt_aide_fs[foo]);' 'wprintw(win, "%s", txt_aide_fs[foo]);' '';