From be514a694f2cddbb1b23af971430364a223eb894 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Thu, 7 Sep 2017 22:49:22 -0400 Subject: 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 --- includes/rts/EventLogFormat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/rts') 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) -- cgit v1.2.1