diff --git a/src/server/text.c b/src/server/text.c index fbf2473d56fb6f2d92f8a47e8dd3c257aca7c45f..801c6d48e48bf4a6e3e6e7f77e22dc45073d08fc 100644 --- a/src/server/text.c +++ b/src/server/text.c @@ -1,5 +1,5 @@ /* - * $Id: text.c,v 0.32 1994/06/30 07:06:42 ceder Exp $ + * $Id: text.c,v 0.33 1994/10/22 13:25:49 ceder Exp $ * Copyright (C) 1991, 1992, 1993, 1994 Lysator Academic Computer Association. * * This file is part of the LysKOM server. @@ -28,7 +28,7 @@ * All atomic calls that deals with texts. */ -static char *rcsid = "$Id: text.c,v 0.32 1994/06/30 07:06:42 ceder Exp $"; +static char *rcsid = "$Id: text.c,v 0.33 1994/10/22 13:25:49 ceder Exp $"; #include "rcs.h" USE(rcsid); @@ -532,7 +532,7 @@ adjust_text_list(Text_list *text_list) * sizeof(Text_no))); } - return zeroes > 0; + return (zeroes > 0) ? TRUE : FALSE; }