projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
bf1467b
)
Fix error that compiler does not notice
author
H.G. Muller
<h.g.muller@hccnet.nl>
Sun, 7 Feb 2010 09:38:38 +0000 (10:38 +0100)
committer
Arun Persaud
<arun@nubati.net>
Sun, 7 Feb 2010 20:05:47 +0000 (12:05 -0800)
Boolean GLT_GetFromList did not return a value. But no error on Ubuntu!
xgamelist.c
patch
|
blob
|
history
diff --git
a/xgamelist.c
b/xgamelist.c
index
aa7c6a2
..
4eb1d38
100644
(file)
--- a/
xgamelist.c
+++ b/
xgamelist.c
@@
-643,6
+643,7
@@
void GLT_AddToList(char *name)
Boolean GLT_GetFromList(int index, char *name)
{
strcpy(name, strings[index]);
+ return TRUE;
}
void GLT_DeSelectList()