Fix indent style issue: use spaces not tabs

This commit is contained in:
summersamara
2024-11-19 02:08:56 +01:00
parent ac305d6920
commit 7caf0ad318
+1 -1
View File
@@ -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]);'
'';