diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-05 11:45:25 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-05 11:45:25 +0000 |
commit | 00935b908846d106587dedb55c0ff62bb4518cf1 (patch) | |
tree | 8c1bf5fc4659455ad5272f719902101d7405d9bf /linux-user | |
parent | c39b3ca9c30f438fc048d08c5eb58d06ac0ecb6d (diff) | |
download | qemu-00935b908846d106587dedb55c0ff62bb4518cf1.tar.gz qemu-00935b908846d106587dedb55c0ff62bb4518cf1.tar.bz2 qemu-00935b908846d106587dedb55c0ff62bb4518cf1.zip |
Make various generated structures static
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5429 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 0cf4ba77cb..f1f050ee62 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -2119,7 +2119,7 @@ enum { #undef STRUCT #undef STRUCT_SPECIAL -#define STRUCT(name, list...) const argtype struct_ ## name ## _def[] = { list, TYPE_NULL }; +#define STRUCT(name, list...) static const argtype struct_ ## name ## _def[] = { list, TYPE_NULL }; #define STRUCT_SPECIAL(name) #include "syscall_types.h" #undef STRUCT |