summaryrefslogtreecommitdiff
path: root/gmon
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-06-05 20:44:03 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-06-05 20:44:03 +0000
commit9c84384cc18ff589233628c193953ca8d7a39f5c (patch)
tree95d1f5aee409b208db7545d678012eeae9559fae /gmon
parent5556231db2301917cd14a7450de4eba2368c9763 (diff)
Remove trailing whitespace.
Diffstat (limited to 'gmon')
-rw-r--r--gmon/sys/gmon.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gmon/sys/gmon.h b/gmon/sys/gmon.h
index c02f8316de..5b430abc3e 100644
--- a/gmon/sys/gmon.h
+++ b/gmon/sys/gmon.h
@@ -119,10 +119,10 @@ extern struct __bb *__bb_head;
*/
#define ARCINDEX u_long
-/*
+/*
* Maximum number of arcs we want to allow.
- * Used to be max representable value of ARCINDEX minus 2, but now
- * that ARCINDEX is a long, that's too large; we don't really want
+ * Used to be max representable value of ARCINDEX minus 2, but now
+ * that ARCINDEX is a long, that's too large; we don't really want
* to allow a 48 gigabyte table.
* The old value of 1<<16 wasn't high enough in practice for large C++
* programs; will 1<<20 be adequate for long? FIXME