workaround for ppc compiler bug

git-svn-id: http://svn.code.sf.net/p/xqf/code/trunk@108 d2ac09be-c843-0410-8b1f-f8a84130e0ec
This commit is contained in:
Ludwig Nussel 2001-11-19 16:22:01 +00:00 committed by l-n
parent 05cbabb6c3
commit 00e1bcfd5a
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,6 @@
Nov 19, 2001: Ludwig Nussel <l-n@users.sourceforge.net>
- workaround for ppc compiler bug
Oct 23, 2001: Ludwig Nussel <l-n@users.sourceforge.net>
- changed wording and my email in about dialog
- removed gnuconfig.h.in from cvs

View File

@ -88,8 +88,10 @@ struct pixmap connect_pix;
struct pixmap observe_pix;
struct pixmap record_pix;
struct pixmap filter_pix[2];
struct pixmap filter_cfg_pix[2];
// Workaround for ppc compiler bug
// which does not initialize arrays with 0
struct pixmap filter_pix[2] = { 0 };
struct pixmap filter_cfg_pix[2] = { 0 };
struct pixmap q_pix;
struct pixmap q1_pix;
@ -116,12 +118,12 @@ struct pixmap man_black_pix;
struct pixmap man_red_pix;
struct pixmap man_yellow_pix;
struct pixmap group_pix[3];
struct pixmap buddy_pix[9];
struct pixmap group_pix[3] = { 0 };
struct pixmap buddy_pix[9] = { 0 };
struct pixmap error_pix;
struct pixmap server_status[5];
struct pixmap server_status[5] = { 0 };
struct pixmap locked_pix;
static GdkGC *pixmaps_gc;