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 | 9f106a75dec42e9e619635a729d4a3c5d8c73e11 (patch) | |
tree | 3bae7355b4e88f2c9fcc417001d21433042fe988 /darwin-user | |
parent | Make bitmask tables static const (diff) | |
download | qemu-kvm-9f106a75dec42e9e619635a729d4a3c5d8c73e11.tar.gz qemu-kvm-9f106a75dec42e9e619635a729d4a3c5d8c73e11.tar.bz2 qemu-kvm-9f106a75dec42e9e619635a729d4a3c5d8c73e11.zip |
Make ioctl table static
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5426 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'darwin-user')
-rw-r--r-- | darwin-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/darwin-user/syscall.c b/darwin-user/syscall.c index ae39f9a93..8bf365d4b 100644 --- a/darwin-user/syscall.c +++ b/darwin-user/syscall.c @@ -654,7 +654,7 @@ typedef struct IOCTLEntry { #define MAX_STRUCT_SIZE 4096 -IOCTLEntry ioctl_entries[] = { +static IOCTLEntry ioctl_entries[] = { #define IOCTL(cmd, access, types...) \ { cmd, cmd, #cmd, access, { types } }, #include "ioctls.h" |