projects
/
xonotic
/
darkplaces.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
688396c
)
fix a signed/unsigned comparison warning
author
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 2 Aug 2005 20:11:19 +0000
(20:11 +0000)
committer
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 2 Aug 2005 20:11:19 +0000
(20:11 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5552
d7cf8633
-e32d-0410-b094-
e92efae38249
sys_linux.c
patch
|
blob
|
history
diff --git
a/sys_linux.c
b/sys_linux.c
index
4bdaf07
..
1ee5b72
100644
(file)
--- a/
sys_linux.c
+++ b/
sys_linux.c
@@
-142,7
+142,7
@@
char *Sys_ConsoleInput(void)
if (cls.state == ca_dedicated)
{
static char text[256];
- static int len = 0;
+ static
unsigned
int len = 0;
#ifdef WIN32
int c;