Chromium Code Reviews| Index: runtime/bin/vmstats_impl_win.cc |
| =================================================================== |
| --- runtime/bin/vmstats_impl_win.cc (revision 21599) |
| +++ runtime/bin/vmstats_impl_win.cc (working copy) |
| @@ -18,7 +18,7 @@ |
| void VmStats::Initialize() { |
| // Enable SIGBREAK (ctrl-break) stack dumps. |
| - if (signal(SIGBREAK sig_handler) == SIG_ERR) { |
| + if (signal(SIGBREAK, sig_handler) == SIG_ERR) { |
| perror("Adding SIGBREAK signal handler failed"); |
| } |
| } |