vaccinewars

be a doctor and try to vaccinate the world
git clone git://src.adamsgaard.dk/vaccinewars # fast
git clone https://src.adamsgaard.dk/vaccinewars.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit f273079801ae34b77061dec4ea6eb50f3497d44b
parent 6cddcefbbd6e28992a15537f9603ebeda12996f7
Author: Ben Webb <ben@salilab.org>
Date:   Tue, 26 Feb 2002 16:10:54 +0000

Comparison between unsigned and signed removed to placate gcc -Wsign-compare


Diffstat:
Msrc/gui_client/gtk_client.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gui_client/gtk_client.c b/src/gui_client/gtk_client.c @@ -1755,8 +1755,8 @@ void QuestionDialog(char *Data, Player *From) gchar *Words[] = { N_("_Yes"), N_("_No"), N_("_Run"), N_("_Fight"), N_("_Attack"), N_("_Evade") }; - gint numWords = sizeof(Words) / sizeof(Words[0]); - gint i, j; + guint numWords = sizeof(Words) / sizeof(Words[0]); + guint i, j; split = g_strsplit(Data, "^", 1); if (!split[0] || !split[1]) {