diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-05 10:52:52 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-05 10:52:52 +0000 |
commit | 6f918867581b01d632b6f897c0af2815da5ed441 (patch) | |
tree | 3bae7355b4e88f2c9fcc417001d21433042fe988 /linux-user | |
parent | e860eca1dbe748c4a69ae3d3d3b1a3c660aa3e5b (diff) | |
download | qemu-6f918867581b01d632b6f897c0af2815da5ed441.tar.gz qemu-6f918867581b01d632b6f897c0af2815da5ed441.tar.bz2 qemu-6f918867581b01d632b6f897c0af2815da5ed441.zip |
Make ioctl table static
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5426 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index ab7bfcb610..0cf4ba77cb 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -2139,7 +2139,7 @@ typedef struct IOCTLEntry { #define MAX_STRUCT_SIZE 4096 -IOCTLEntry ioctl_entries[] = { +static IOCTLEntry ioctl_entries[] = { #define IOCTL(cmd, access, types...) \ { TARGET_ ## cmd, cmd, #cmd, access, { types } }, #include "ioctls.h" |