Skip to content

Commit

Permalink
Merge pull request #19293 from JuliaLang/tb/clang_warning
Browse files Browse the repository at this point in the history
Silence compiler warning.
  • Loading branch information
vtjnash authored Nov 10, 2016
2 parents 9c181c1 + c265db3 commit ce6a0c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ JL_DLLEXPORT void jl_atexit_hook(int exitcode)

// replace standard output streams with something that we can still print to
// after the finalizers from base/stream.jl close the TTY
JL_STDOUT = STDOUT_FILENO;
JL_STDERR = STDERR_FILENO;
JL_STDOUT = (uv_stream_t*) STDOUT_FILENO;
JL_STDERR = (uv_stream_t*) STDERR_FILENO;

jl_gc_run_all_finalizers(ptls);

Expand Down

2 comments on commit ce6a0c3

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @jrevels

Please sign in to comment.