Skip to content

Commit

Permalink
process: changed var to const in internal/v8_prof_processor
Browse files Browse the repository at this point in the history
PR-URL: #8619
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
AdriVanHoudt authored and Fishrock123 committed Oct 11, 2016
1 parent 1b494d3 commit 37ce6da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/v8_prof_processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ scriptFiles.forEach(function(s) {
script += process.binding('natives')[s] + '\n';
});

var tickArguments = [];
const tickArguments = [];
if (process.platform === 'darwin') {
tickArguments.push('--mac');
} else if (process.platform === 'win32') {
Expand Down

0 comments on commit 37ce6da

Please sign in to comment.