We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 727ef28 commit 1b91cedCopy full SHA for 1b91ced
src/benchmark/t1_demo.c
@@ -102,9 +102,9 @@ int main (int argc, char **argv)
102
int ntrials = 5 ;
103
// ntrials = 1 ; // HACK
104
printf ("# of trials: %d\n", ntrials) ;
105
- printf ("sizeof (clock_t): %d\n", sizeof (clock_t)) ;
106
- printf ("sizeof (long long int): %d\n", sizeof (long long int)) ;
107
- printf ("sizeof (long): %d\n", sizeof (long)) ;
+ printf ("sizeof (clock_t): %d\n", (int) sizeof (clock_t)) ;
+ printf ("sizeof (long long int): %d\n", (int) sizeof (long long int)) ;
+ printf ("sizeof (long): %d\n", (int) sizeof (long)) ;
108
109
int nt = NTHREAD_LIST ;
110
int Nthreads [20] = { 0, THREAD_LIST } ;
0 commit comments