From: Jan-Benedict G. <jb...@us...> - 2005-04-26 23:09:20
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14514/include/asm-vax Modified Files: atomic.h Log Message: - Remove pointless braces. Index: atomic.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/atomic.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- atomic.h 26 Apr 2005 22:53:31 -0000 1.4 +++ atomic.h 26 Apr 2005 23:09:11 -0000 1.5 @@ -143,7 +143,7 @@ : "m" (v->counter) : "memory"); - return (c == 0); + return c == 0; } /** @@ -167,7 +167,7 @@ : "m" (v->counter) : "memory"); - return (c == 0); + return c == 0; } /** |