Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-11-22 07:33:04 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-11-22 07:33:04 +0300
commit7b2f5ab7f8b245774572c1d06aac9f6cdc2e14fe (patch)
tree8623af2de49f534b504f74cf8056a0fe235c4a38 /src
parentf0b8cc6a94b2e1ae7091219020c4035c5ee09673 (diff)
Fix mac build
Diffstat (limited to 'src')
-rw-r--r--src/node_stdio.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/node_stdio.cc b/src/node_stdio.cc
index e36f4adf50c..4943ead3c8b 100644
--- a/src/node_stdio.cc
+++ b/src/node_stdio.cc
@@ -236,7 +236,6 @@ void Stdio::Initialize(v8::Handle<v8::Object> target) {
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = HandleSIGCONT;
- sa.sa_restorer = NULL;
sigaction(SIGCONT, &sa, NULL);
}