summaryrefslogtreecommitdiff
path: root/Userland/sh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/sh.cpp')
-rw-r--r--Userland/sh.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/sh.cpp b/Userland/sh.cpp
index e4f926cb00..f210f64013 100644
--- a/Userland/sh.cpp
+++ b/Userland/sh.cpp
@@ -232,7 +232,6 @@ int main(int argc, char** argv)
sa.sa_handler = handle_sigint;
sa.sa_flags = 0;
sa.sa_mask = 0;
- sa.sa_restorer = nullptr;
int rc = sigaction(SIGINT, &sa, nullptr);
assert(rc == 0);
}