summaryrefslogtreecommitdiff
path: root/src/syscall.rs
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2014-10-06 22:11:47 -0700
committerCarl Lerche <me@carllerche.com>2014-10-06 22:11:47 -0700
commite8324e4c4464510275fd6f4a4027ef1326977e1d (patch)
tree9be0d84683f4576b46c27a3f31430790a24a9086 /src/syscall.rs
parent7c4fa8232df48dc324119ff8d742a35458dec02e (diff)
downloadnix-e8324e4c4464510275fd6f4a4027ef1326977e1d.zip
Fix warnings
Diffstat (limited to 'src/syscall.rs')
-rw-r--r--src/syscall.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall.rs b/src/syscall.rs
index 85f6e730..9a9c996a 100644
--- a/src/syscall.rs
+++ b/src/syscall.rs
@@ -8,7 +8,7 @@ mod arch {
pub type Syscall = c_long;
- pub static SysPivotRoot: Syscall = 155;
+ pub static SYSPIVOTROOT: Syscall = 155;
}
extern {