Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
79f038d2
Commit
79f038d2
authored
Oct 22, 1994
by
Per Cederqvist
Browse files
(adjust_text_list): Explicitly return TRUE or FALSE, not a boolean
expression, to get rid of apcc warnings.
parent
63234bac
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/text.c
View file @
79f038d2
/*
* $Id: text.c,v 0.3
2
1994/
06/30 07:06
:4
2
ceder Exp $
* $Id: text.c,v 0.3
3
1994/
10/22 13:25
:4
9
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.3
2
1994/
06/30 07:06
:4
2
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: text.c,v 0.3
3
1994/
10/22 13:25
:4
9
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
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment