summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2017-09-07 22:49:22 -0400
committerBen Gamari <ben@smart-cactus.org>2017-09-07 22:53:20 -0400
commitbe514a694f2cddbb1b23af971430364a223eb894 (patch)
treec344948c9b6ff156b98f015a7e5e9c1533b9ad6e /includes
parent8ae263ceb3566a7c82336400b09cb8f381217405 (diff)
downloadhaskell-be514a694f2cddbb1b23af971430364a223eb894.tar.gz
includes/rts: Drop trailing comma
This trailing comma snuck in in a recent patch. There is nothing wrong with the comma; it's perfectly valid C99, yet nevertheless Mac OS X's dtrace utility chokes on it with, dtrace: failed to compile script rts/RtsProbes.d: "includes/rts/EventLogFormat.h", line 245: syntax error near "}" make[1]: *** [rts/dist/build/RtsProbes.h] Error 1
Diffstat (limited to 'includes')
-rw-r--r--includes/rts/EventLogFormat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/rts/EventLogFormat.h b/includes/rts/EventLogFormat.h
index b3ad52b31e..ccfe03b5a5 100644
--- a/includes/rts/EventLogFormat.h
+++ b/includes/rts/EventLogFormat.h
@@ -241,7 +241,7 @@ typedef enum {
HEAP_PROF_BREAKDOWN_TYPE_DESCR,
HEAP_PROF_BREAKDOWN_RETAINER,
HEAP_PROF_BREAKDOWN_BIOGRAPHY,
- HEAP_PROF_BREAKDOWN_CLOSURE_TYPE,
+ HEAP_PROF_BREAKDOWN_CLOSURE_TYPE
} HeapProfBreakdown;
#if !defined(EVENTLOG_CONSTANTS_ONLY)