Evas (gl_x11 engine): Fix compiler warning about get_time function.

SVN revision: 67058
This commit is contained in:
Christopher Michael 2012-01-11 09:48:47 +00:00
parent 477c7b9582
commit 2e70a02465
1 changed files with 3 additions and 3 deletions

View File

@ -1242,16 +1242,16 @@ eng_output_redraws_next_update_get(void *data, int *x, int *y, int *w, int *h, i
//#define FRAMECOUNT 1
//#ifdef FRAMECOUNT
#ifdef FRAMECOUNT
static double
get_time(void)
{
struct timeval timev;
struct timeval timev;
gettimeofday(&timev, NULL);
return (double)timev.tv_sec + (((double)timev.tv_usec) / 1000000);
}
//#endif
#endif
static int safe_native = -1;