mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Fix a signed comparison error.
Not sure how this fix got lost.
This commit is contained in:
parent
aebd9288cd
commit
113e0d82ba
1 changed files with 3 additions and 3 deletions
|
@ -128,8 +128,8 @@ static builtin_sym_t builtin_symbols[] __attribute__ ((used)) = {
|
||||||
{".param_6", &type_param, QFOD_NOSAVE | QFOD_GLOBAL},
|
{".param_6", &type_param, QFOD_NOSAVE | QFOD_GLOBAL},
|
||||||
{".param_7", &type_param, QFOD_NOSAVE | QFOD_GLOBAL},
|
{".param_7", &type_param, QFOD_NOSAVE | QFOD_GLOBAL},
|
||||||
};
|
};
|
||||||
static const int num_builtins = sizeof (builtin_symbols)
|
static const unsigned num_builtins = sizeof (builtin_symbols)
|
||||||
/ sizeof (builtin_symbols[0]);
|
/ sizeof (builtin_symbols[0]);
|
||||||
|
|
||||||
static defref_t *defrefs_freelist;
|
static defref_t *defrefs_freelist;
|
||||||
|
|
||||||
|
@ -638,7 +638,7 @@ linker_find_def (const char *name)
|
||||||
void
|
void
|
||||||
linker_begin (void)
|
linker_begin (void)
|
||||||
{
|
{
|
||||||
int i;
|
unsigned i;
|
||||||
|
|
||||||
linker_current_file = dstring_newstr ();
|
linker_current_file = dstring_newstr ();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue