mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-11-13 00:24:46 +00:00
- Fix missing semicolon in Sun-only code. Thanks Vincent.
This commit is contained in:
parent
aaa894cd95
commit
7a18c3ea70
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ Sys_Milliseconds
|
||||||
int curtime;
|
int curtime;
|
||||||
/* FIXME: replace with a configure test for gethrtime() */
|
/* FIXME: replace with a configure test for gethrtime() */
|
||||||
#ifdef __sun__
|
#ifdef __sun__
|
||||||
extern hrtime_t base_hrtime
|
extern hrtime_t base_hrtime;
|
||||||
|
|
||||||
int Sys_Milliseconds(void) {
|
int Sys_Milliseconds(void) {
|
||||||
hrtime_t curr_hrtime;
|
hrtime_t curr_hrtime;
|
||||||
|
|
Loading…
Reference in a new issue