Skip to content
Snippets Groups Projects
Commit e84d76d3 authored by Ben Gamari's avatar Ben Gamari
Browse files

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

(cherry picked from commit be514a69)
parent a0671e2d
No related merge requests found
......@@ -240,7 +240,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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment