13
0

fix cast in call to time(2)

This commit is contained in:
Paul Davis 2021-08-13 14:10:36 -06:00
parent b3fff25d5c
commit 0095681493
4 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ main (int argc, char* argv[])
c->set_background_color (0xffffffff);
srandom (time ((time_t) 0));
srandom (time ((time_t *) 0));
// cview.set_size_request (100, 100);

View File

@ -90,7 +90,7 @@ main (int argc, char* argv[])
c->set_background_color (0xffffffff);
srandom (time ((time_t) 0));
srandom (time ((time_t *) 0));
// cview.set_size_request (100, 100);

View File

@ -32,7 +32,7 @@ main (int argc, char* argv[])
c->set_background_color (0xffffffff);
srandom (time ((time_t) 0));
srandom (time ((time_t *) 0));
cview.set_size_request (100, 100);

View File

@ -32,7 +32,7 @@ main (int argc, char* argv[])
c->set_background_color (0xffffffff);
srandom (time ((time_t) 0));
srandom (time ((time_t *) 0));
win.add (cview);