mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-11 07:56:27 +01:00
Cast param for std::time to a pointer of time_t
- bleeding clang (trunk 186535 v3.4) fails here
This commit is contained in:
parent
a8456b3766
commit
cdc9d95e92
1 changed files with 1 additions and 1 deletions
|
|
@ -182,7 +182,7 @@ AudioSource::touch_peakfile ()
|
|||
struct utimbuf tbuf;
|
||||
|
||||
tbuf.actime = statbuf.st_atime;
|
||||
tbuf.modtime = time ((time_t) 0);
|
||||
tbuf.modtime = time ((time_t*) 0);
|
||||
|
||||
utime (peakpath.c_str(), &tbuf);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue