From: Jordi Albornoz Date: Mon, 14 Jan 2002 17:10:44 +0000 (+0000) Subject: Fixed cosmetic issue in about dialog. X-Git-Url: https://hydra-www.ietfng.org/gitweb/?a=commitdiff_plain;h=9f1a19dcef2f584ff327015e70d26e97c0f53a37;p=gtetrinet Fixed cosmetic issue in about dialog. Fixed major problem in ARM, PowerPC and S/390 architectures, char variables aren't signed by default in those systems. --- diff --git a/ChangeLog b/ChangeLog index 0b86112..7374211 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-01-14 Jordi Mallach + * Fixed cosmetic issue in about dialog. + * Fixed major problem in ARM, PowerPC and S/390 architectures, + char variables aren't signed by default in those systems. + 2001-11-05 * Cleaned up page detach patch. * Merged TetriFast support. diff --git a/src/commands.c b/src/commands.c index dc7611d..19cc2d2 100644 --- a/src/commands.c +++ b/src/commands.c @@ -214,7 +214,7 @@ void about_command (GtkWidget *widget, gpointer data) "(C) 1999, 2000 Ka-shu Wong", authors, _("A Tetrinet client for GNOME\n" - "Homepage:\thttp://gtetrinet.sourceforge.net/\n"), + "Homepage: http://gtetrinet.sourceforge.net/\n"), NULL); gtk_widget_show (about); } diff --git a/src/tetrinet.c b/src/tetrinet.c index 60ad5fd..38d6b23 100644 --- a/src/tetrinet.c +++ b/src/tetrinet.c @@ -118,7 +118,7 @@ struct sb sbinfo[] = { }; static void tetrinet_updatelevels (void); -static void tetrinet_setspeciallabel (char sb); +static void tetrinet_setspeciallabel (signed char sb); static void tetrinet_dospecial (int from, int to, int type); static void tetrinet_specialkey (int pnum); static void tetrinet_shiftline (int l, int d, FIELD field); @@ -730,7 +730,7 @@ void tetrinet_redrawfields (void) fields_drawfield (playerfield(i), fields[i]); } -static void tetrinet_setspeciallabel (char sb) +static void tetrinet_setspeciallabel (signed char sb) { int sbnum; if (sb == -1) {