diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-02-10 19:33:58 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-02-10 19:33:58 +0100 |
commit | abc57d344806b8d0bca113900702c155354124ac (patch) | |
tree | 01909fe249a18e93ed9915c2af7fe63747ab4a2c /vcl | |
parent | 9150bb0b3ea3f32e867aad478ef82a74fe0726ce (diff) |
Revert "Werror: C4324 structure was padded due to __declspec(align())"
This reverts commit 9150bb0b3ea3f32e867aad478ef82a74fe0726ce.
It causes CppunitTest_vcl_filters_test to segfault in longjmp() on
Linux.
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/jpeg/jpegc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/jpeg/jpegc.cxx b/vcl/source/filter/jpeg/jpegc.cxx index c1a08873d291..2c9908b07d44 100644 --- a/vcl/source/filter/jpeg/jpegc.cxx +++ b/vcl/source/filter/jpeg/jpegc.cxx @@ -39,8 +39,8 @@ extern "C" { struct ErrorManagerStruct { - jmp_buf setjmp_buffer; jpeg_error_mgr pub; + jmp_buf setjmp_buffer; }; extern "C" void errorExit (j_common_ptr cinfo) |