From f595d8ed46d627af9808a3c881a0e9a7fb88e3cb Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 6 Nov 2010 22:17:30 +0100 Subject: typo fix Signed-off-by: Denys Vlasenko --- scripts/cleanup_printf2puts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/cleanup_printf2puts b/scripts/cleanup_printf2puts index 446152e12..00193a842 100755 --- a/scripts/cleanup_printf2puts +++ b/scripts/cleanup_printf2puts @@ -3,7 +3,7 @@ # Processes current directory recursively: # printf("abc\n") -> puts("abc"). Beware of fprintf etc... -# BTW, gcc 4.1.2 already does tha same! Can't believe it... +# BTW, gcc 4.1.2 already does the same! Can't believe it... grep -lr 'printf\([^%%]*\\n"\)' . | grep '.[ch]$' | xargs -n1 \ sed -e 's/\([^A-Za-z0-9_]\)printf(\( *"[^%]*\)\\n")/\1puts(\2")/' -i -- cgit v1.2.3