From 7894fcd21732dd2ddfbb9beca52d037a62ed11f4 Mon Sep 17 00:00:00 2001 From: Frans Kaashoek Date: Thu, 25 Aug 2016 09:13:00 -0400 Subject: Remove trailing white space with: for f in *.{h,c}; do sed -i .sed 's/[[:blank:]]*$//' $f; done (Thanks to Nicolás Wolovick) --- spinlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'spinlock.h') diff --git a/spinlock.h b/spinlock.h index fdda016..0a9d8e2 100644 --- a/spinlock.h +++ b/spinlock.h @@ -1,7 +1,7 @@ // Mutual exclusion lock. struct spinlock { uint locked; // Is the lock held? - + // For debugging: char *name; // Name of lock. struct cpu *cpu; // The cpu holding the lock. -- cgit v1.2.3