Replaced NULL with 0
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@953 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 27df5904ae2b58f900f0181d77a9c52a2d02a5ea Former-commit-id: 33d04af7a38bb1170481f99fc0d70c7723d49d97
This commit is contained in:
parent
cd6ea94597
commit
dea6460a14
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ double RtTimeStamp()
|
|||
}
|
||||
#else
|
||||
struct timeval tv;
|
||||
gettimeofday(&tv, NULL);
|
||||
gettimeofday(&tv, 0);
|
||||
return tv.tv_sec * 1000.0 + tv.tv_usec / 1000.0;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue