* config/config.ffi.c: Move declaration of g_dbl to begin of function.

Patch by Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33515 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2011-07-11 11:30:50 +00:00
parent 2279a6ccfb
commit 19694911d6
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2011-07-11 Fred Kiefer <FredKiefer@gmx.de>
* config/config.ffi.c: Move declaration of g_dbl to begin of
function.
Patch by Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
2011-07-11 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSTimeZone.m (+systemTimeZone): Support the OpenSuse key

View file

@ -40,14 +40,13 @@ int main (void)
ffi_type* cls_struct_fields0[5];
ffi_type cls_struct_type0;
ffi_type* dbl_arg_types[5];
struct cls_struct_combined g_dbl = {4.0, 5.0, 1.0, 8.0};
cls_struct_type0.size = 0;
cls_struct_type0.alignment = 0;
cls_struct_type0.type = FFI_TYPE_STRUCT;
cls_struct_type0.elements = cls_struct_fields0;
struct cls_struct_combined g_dbl = {4.0, 5.0, 1.0, 8.0};
cls_struct_fields0[0] = &ffi_type_float;
cls_struct_fields0[1] = &ffi_type_float;
cls_struct_fields0[2] = &ffi_type_float;