aboutsummaryrefslogtreecommitdiffstats
path: root/sysgen
diff options
context:
space:
mode:
Diffstat (limited to 'sysgen')
-rw-r--r--sysgen/syscallnr.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysgen/syscallnr.go b/sysgen/syscallnr.go
index 81244018c..0f2fa58a9 100644
--- a/sysgen/syscallnr.go
+++ b/sysgen/syscallnr.go
@@ -94,7 +94,7 @@ struct call_t {
{{range $arch := $.Archs}}
#if {{range $cdef := $arch.CARCH}}defined({{$cdef}}) || {{end}}0
-call_t syscalls[] = {
+static call_t syscalls[] = {
{{range $c := $arch.Calls}} {"{{$c.Name}}", {{$c.NR}}},
{{end}}
};