summaryrefslogtreecommitdiff
path: root/wsutil/bits_count_ones.h
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-02-25 15:42:35 -0500
committerBill Meier <wmeier@newsguy.com>2014-02-25 20:46:49 +0000
commit11b5c15fdb815a2af400bfddef944dbac41a434a (patch)
treee7217ebcff4d4d9f7f95d0342b6776547e5537c3 /wsutil/bits_count_ones.h
parentc55c57ad72acda8cbce2841bc237f966bad5ae5b (diff)
downloadwireshark-11b5c15fdb815a2af400bfddef944dbac41a434a.tar.gz
Remove trailing whitespace
Change-Id: I8116f63ff88687c8db3fd6e8e23b22ab2f759af0 Reviewed-on: https://code.wireshark.org/review/385 Reviewed-by: Bill Meier <wmeier@newsguy.com> Tested-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'wsutil/bits_count_ones.h')
-rw-r--r--wsutil/bits_count_ones.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/wsutil/bits_count_ones.h b/wsutil/bits_count_ones.h
index 82f88bc43c..3d88d52fa9 100644
--- a/wsutil/bits_count_ones.h
+++ b/wsutil/bits_count_ones.h
@@ -31,9 +31,9 @@
#include <glib.h>
/*
- * The variable-precision SWAR algorithm is an interesting way to count
- * the number of bits set in an integer. While its performance is very
- * good (two times faster than gcc's __builtin_popcount [1] and
+ * The variable-precision SWAR algorithm is an interesting way to count
+ * the number of bits set in an integer. While its performance is very
+ * good (two times faster than gcc's __builtin_popcount [1] and
* 16 instructions when compiled with gcc -O3)
* http://playingwithpointers.com/swar.html
*/