Fix function signature
Use void for parameters (this project is in C).
This commit is contained in:
parent
37d88b8a6a
commit
ad667bfa20
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ struct size {
|
||||||
Uint16 height;
|
Uint16 height;
|
||||||
};
|
};
|
||||||
|
|
||||||
static long timestamp_ms() {
|
static long timestamp_ms(void) {
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
gettimeofday(&tv, NULL);
|
gettimeofday(&tv, NULL);
|
||||||
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
|
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
|
||||||
|
|
Loading…
Reference in a new issue