aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAlexander Stohr <alexander.stohr@gmx.de>2004-03-30 16:48:12 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-03-30 16:48:12 -0800
commit96531b3706a5d1e84f138ce45afb3d003f6adade (patch)
treebba8650dc2028831035e3c2e75a47ee288bdd02c /lib
parentfe6a9c2179b19c03fbaba00df4e441a07197d3c2 (diff)
downloadhistory-96531b3706a5d1e84f138ce45afb3d003f6adade.tar.gz
[PATCH] double semicolon cleanup
This cleans up a larger amount of superfluos ";;" statements in current Linux kernel sources by converting them to the regular single ";" statments. It seems to be a common problem that at the end of a line the semicolon key is producing an echo.
Diffstat (limited to 'lib')
-rw-r--r--lib/bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bitmap.c b/lib/bitmap.c
index 4377231e98e3e3..6793ac0029151a 100644
--- a/lib/bitmap.c
+++ b/lib/bitmap.c
@@ -47,7 +47,7 @@ EXPORT_SYMBOL(bitmap_full);
int bitmap_equal(const unsigned long *bitmap1,
unsigned long *bitmap2, int bits)
{
- int k, lim = bits/BITS_PER_LONG;;
+ int k, lim = bits/BITS_PER_LONG;
for (k = 0; k < lim; ++k)
if (bitmap1[k] != bitmap2[k])
return 0;