mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
fix a gcc 2.95 warning
This commit is contained in:
parent
a6a171a5e1
commit
1cba65f6ce
1 changed files with 2 additions and 2 deletions
|
@ -649,10 +649,10 @@ linker_add_object_file (const char *filename)
|
|||
int
|
||||
linker_add_lib (const char *libname)
|
||||
{
|
||||
pack_t *pack;
|
||||
pack_t *pack = 0;
|
||||
path_t start = {path_head, "."};
|
||||
path_t *path = &start;
|
||||
const char *path_name;
|
||||
const char *path_name = 0;
|
||||
int i, j;
|
||||
int did_something;
|
||||
|
||||
|
|
Loading…
Reference in a new issue